0.2.0 • Published 10 years ago

creaku v0.2.0

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

creaku

creaku

Heroku app creator. Useful when you want to create an app and clone it to create multiple environments.

Installation

Run npm install -g creaku.

Usage

> creaku <my_conf.cfg> --key <MY_HEROKU_API_KEY>

or

> export HEROKU_API_KEY=<MY_HEROKU_API_KEY>
> creaku <my_conf.cfg>

Configuration file

...is in YAML format. Example:

# Base name of the Heroku app. Will create an app for each combination of `${name}-#{envs}`.
name: creaku-test
# env vars to set for the app.
envVars:
  foo: 42
  bar: "oh yeah"
# App environments (appended to `name` when creating the app).
envs:
 - foo
 - bar
# Add collaborators.
collaborators:
 - john.doe@sev.en
 - david.mills@sev.en