Skip to content
Documentation
Getting Started

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@alpha my-app

Install

Install the project dependencies.

cd my-app
npm install

Visualize

View the orchestration graph of your application.

npm run viz

Authorize

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 ~/.credentials

Deploy

Deploy your application to AWS, optionally running with watch mode to get live infrastructure updates.

npm run deploy # or
npm run watch

Destroy

Once you're done, you can tear down all the resources you deployed.

npm run destroy