Quick start
This quick start guide will show you how to install and configure Takomo and deploy some basic infrastructure.
AWS credentials
During this tutorial, you'll deploy some stacks, so you need an AWS account where you can safely try things out.
Create an IAM user with administrator permissions.
Next, create access keys for the IAM user and configure them to your ~/.aws/credentials file. Let's name our profile as takomo-quick-start.
Project initialization
We'll start by creating a new directory for your Takomo project:
From now on, we'll call the takomo-quick-start directory as project's root directory.
Change to the root directory and initialize a new NPM project:
Add Takomo as a development dependency:
Initialize a new Takomo project:
From the command output you can see what directories and files were created. You might want to take a look at the files, there isn't much to see =).
Deploy stacks
Now that you have the project initialized, it's time to deploy the stacks. Go ahead and run the following command:
Takomo will present you a deployment plan. Review it and continue when you are ready. Once the deployment completes, you can see a summary of what just happened.
Clean up
You can remove the created stacks by running the following command:
You'll see a plan showing what will happen next. Review the plan and proceed. After the operation you'll see a summary.
Last updated