$ cnpm install biome

Manage environment variables in a sane way. Never push up secrets again!
~/.biome)npm install -g biome
$ biome --help
Usage: biome [options] [command]
Commands:
init [project] Create a new project with the specified name, and save an alias to this folder.
add [project] Add a variable to a project. Specify like NAME=value.
use [project] Open a shell with a project's associated variables included.
edit [project] Open $EDITOR with the project's associated environment variables.
vars [options] [project] Echo all variables.
Options:
-h, --help output usage information
-V, --version output the version number
Examples:
$ biome init project
$ biome add project FOO=bar BAZ="I'm a teapot"
$ biome use project
To set up an environment, first run biome init project to set up a new environment called
project. Then, to add new variables to an environment, run biome add project KEY=value. To
perform more complicated configurations, edit the environment directly with biome edit project.
Once you'd like to use the environment, run biome use project. A new instance of $SHELL will be
spawned containing all the configured variables, plus a few Biome-specific ones. To view your
current environment, type biome.
For each project, biome creates 2 files: a local Biomefile and a global project.json.
// Biomefile
{
"name": "project"
}
// project.json
{
"VARIABLE": "value"
}
The local Biomefile can be committed to source control because it just contains a reference to the
global project. The project.json is stored in ~/.biome/project.json, where project is replaced
with the identifier in the Biomefile. This file is where the environment variables themselves are
actually stored. Since each user can have a separate project.json for each system, everyone can
customize their config to suit their needs.
BIOME_LOCAL_NAME: The name of the file in the project that references an environment. Defaults
to Biomefile.BIOME_FOLDER_NAME: The name of the folder that biome stores all secrets within. Defaults to
~/.biome.$include mapping to an array of envornments. For example, "$include": ["another", "environment", "here"].Biomefile, define a property
called template. Each key of template should be the variable name, while each value should be
its default value. For example:{
"name": "my-project",
"template": {
"KEY": "value"
}
}
Then, when the user runs biome init, they'll be prompted for the values specified. Above, they'd
be prompted for KEY, and given a default choice of "value".
biome init, specify a
template url after the project name, like biome init project http://example.com/template.json.Created by Ryan Gaus
Copyright 2013 - present © cnpmjs.org | Home |