An open API service indexing awesome lists of open source software.

https://github.com/nickstenning/envmgr

A tool to control the environment of spawned programs with config files
https://github.com/nickstenning/envmgr

Last synced: over 1 year ago
JSON representation

A tool to control the environment of spawned programs with config files

Awesome Lists containing this project

README

          

ENVMGR
======

IT MANAGES YOUR ENV.

`envmgr` is a simple application that will load environment variables for your app from a directory of config files.

Why would you want to do that? Perhaps you have a suite of applications which all need to know about some common resources, but which also have app-specific configurations. Here's how you'd achieve that with `envmgr`:

$ ENVMGR_ROOT=~/.envmgr
$ mkdir -p "$ENVMGR_ROOT"
$ cd "$ENVMGR_ROOT"

$ cat >common.conf <app_a.conf <app_b.conf <