You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the bottom of the page you will see a tab for **Deployed backend resources**. Click on the tab and then click the **Download amplify_outputs.json file** button.
363
+
At the bottom of the page you will see a tab for **Deployed backend resources**. Click on the tab and then click the **Download amplify_outputs.json file** button.
At the bottom of the page you will see a tab for **Deployed backend resources**. Click on the tab and then click the **Download amplify_outputs.json file** button.
713
+
At the bottom of the page you will see a tab for **Deployed backend resources**. Click on the tab and then click the **Download amplify_outputs.json file** button.
In the Amplify console, click into the deployment branch (in this case **main**) > select **Data** in the left-hand menu > **Data manager** to see the data entered in your database.
1019
-
1019
+
1020
1020
<Videosrc="/images/gen2/getting-started/amplify-console-data-manager.mp4"description="Video - Data Manager"/>
1021
1021
1022
1022
## Make frontend updates
@@ -1756,7 +1756,7 @@ Now you should have your project created.
1756
1756
The easiest way to get started with AWS Amplify is through npm with `create-amplify` command. You can run it from your base project directory.
1757
1757
1758
1758
```bash title="Terminal" showLineNumbers={false}
1759
-
cd my-app
1759
+
cd my_amplify_app
1760
1760
npm create amplify@latest
1761
1761
? Where should we create your project? (.) # press enter
1762
1762
```
@@ -2000,7 +2000,7 @@ class TodoViewModel: ObservableObject {
2000
2000
}
2001
2001
```
2002
2002
2003
-
This will assign the value of the fetched todos into a Published object.
2003
+
This will assign the value of the fetched todos into a Published object.
2004
2004
2005
2005
Now let's update the UI code to observe the todos. Update the `VStack` in the `ContentView.swift` file with the following code:
2006
2006
@@ -2076,7 +2076,7 @@ class TodoViewModel: ObservableObject {
2076
2076
}
2077
2077
}
2078
2078
}
2079
-
2079
+
2080
2080
func updateTodo(todo: Todo) async {
2081
2081
do {
2082
2082
let result=tryawaitAmplify.API.mutate(request: .update(todo))
@@ -2503,7 +2503,7 @@ setContent {
2503
2503
MyAmplifyAppTheme {
2504
2504
// A surface container using the 'background' color from the theme
0 commit comments