Guide
👾
Before you start, just be warned that Notation is currently in early-stage development. Alpha versions are for testing and fun!
Starter Kit
Create
Boostrap a new project from a starter template.
npm create notation@latest my-appInstall
Install the project dependencies.
cd my-app
npm installVisualize
View the orchestration graph of your application.
npm run vizAuthorize
To deploy you will need AWS credentials set up. If you haven't done this before bear with us while we pull some docs together.
# if creds are set up, they should be here
cat ~/.aws/credentialsDeploy
Deploy your application to AWS, optionally running with watch mode to get live infrastructure updates.
npm run deploy # or
npm run watchDestroy
Once you're done, you can tear down all the resources you deployed.
npm run destroy