- Create an AWS account
- Install npm
- Install or update your aws cli
- Install or update your eb cli
- Install angular-cli
# Clone it from github git clone --depth 1 git@github.com:awslabs/aws-cognito-angular2-quickstart.git # Install the NPM packages cd aws-cognito-angular2-quickstart npm install # Run the app in dev mode npm start This sample application can be deployed to either Elastic Beanstalk or S3. S3 will host this application as a static site while Elastic Beanstalk gives you the capability of adding backend operations to the application.
** createResources.sh requires your aws cli to be configured for JSON output. **
# Install the AWS resources and deploy your application to either Elastic Beanstalk or S3 cd aws ./createResources.sh Running the above command will create the necessary AWS resources and build & deploy your code to AWS. It will prompt you to choose your deployment target (S3 or Elastic Beanstalk).
After initially running the createResources.sh script, use the below commands to rebuild and redeploy
# Commit your changes in order to deploy it to your environment git add . git commit eb deploy # View your deployed application in a browser eb open # Build the project and sync the output with the S3 bucket npm run build; cd dist; aws s3 sync . s3://[BUCKET_NAME]/ # Test your deployed application curl –I http://[BUCKET_NAME].s3-website-[REGION].amazonaws.com/ 