- AWS CLI already configured with Administrator permission
- NodeJS 8.10+ installed
- Docker installed
Prepare the infrastructure
- Create an S3 bucket
aws s3 mb s3://bootcamp-starter-kit-adamulvi-
Edit
infrastructure/deploy.shand set the Configuration options to match your environment -
Run
make infrato deploy the infrastructure
Deploy the application
- Add a
git remoteand point it at the CodeCommit repo created bymake infra. git pushyour changes and the pipeline should kick off a build
- AWS CLI
- AWS SAM CLI
- NodeJS 8.10+ installed
- Docker installed
Run unit tests
- Run the unit tests
make test- Hope they work!
Start the local dev server
- Start up the dev server
make dev-
Write code, it will be automatically recompiled on save.
-
Test your work at the address returned
Running the Swagger editor
- Start the service
make swagger-start-
Point your browser to http://0.0.0.0:8080
-
When done, stop the service
make swagger-stop