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
The AWS Amplify Console provides hosting for fullstack serverless web apps. [Learn more](https://console.amplify.aws). Deploy this to your AWS account with a single click:
2. Import the backend environemtn deployed by the Amplify Console to your repo (the `amplify/team-provider.json` file contains information on all your backend environments). After running this command your `amplify/team-provider.json` should have a backend named `amplify`.
6. Push the updated project configuration to AWS. It will deploy a CloudFormation template that has an Amazon Cognito resource that enables user authentication.
44
+
4. Run locally
64
45
65
-
```sh
66
-
amplify push
67
46
```
68
-
69
-
7. Then you can run it by:
70
-
```sh
71
47
npm start
72
-
```
73
-
74
-
## Hosting with the AWS Amplify Console
75
-
76
-
The AWS Amplify Console provides continuous deployment and hosting for modern web apps (single page apps and static site generators). Continuous deployment allows developers to deploy updates to their frontend and backend on every code commit to their Git repository. If the build succeeds, the app is deployed and hosted on a global CDN with an *amplifyapp.com* domain. The Amplify Console offers globally available CDNs, easy custom domain setup, feature branch deployments, and password protection.
77
48
78
-
1. Push your code to Git.
79
-
1. Login to the [AWS Amplify Console](https://console.aws.amazon.com/amplify/home) and choose **Connect app**
80
-
1. Connect repository and select `master` branch.
81
-
1. Accept the default build settings.
82
-
1. Give the Amplify Console permission to deploy backend resources with your frontend. This will allow the Console to detect changes to your backend on every code commit. If you do not have a service role, follow the prompts to create one.
83
-
1. Review your changes and then choose **Save and deploy**. You app will now be available in a few minutes at `https://master.unique-id.amplifyapp.com`.
49
+
``
84
50
85
-
The Amplify Console will first check for changes to your backend, and then build and deploy your frontend to a managed hosting environment. You can now continuously deploy changes to your frontend or backend and Amplify will automatically deploy those changes. Learn how to customize the sign-in UI [here](https://aws-amplify.github.io/docs/js/authentication#customize-ui).
51
+
Learn how to customize the sign-in UI [here](https://aws-amplify.github.io/docs/js/authentication#customize-ui).
0 commit comments