This project was generated with Angular CLI version 7.0.4.
Run ng serve
for a dev server. Navigate to http://localhost:4200/
. The app will automatically reload if you change any of the source files.
Run ng generate component component-name
to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module
.
Run ng build
to build the project. The build artifacts will be stored in the dist/
directory. Use the --prod
flag for a production build.
To deploy the project under AWS, install the awscli
Then configure it :
awscli configure
Take the information from the AWS console > IAM
Create a bucket :
aws s3 mb s3://todo-app-test-softphone
Build the app :
ng build --prod
Deploy on S3 with public read permission:
aws s3 sync todo-app s3://todo-app-test-softphone --acl public-read