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
- Host: GitHub
- URL: https://github.com/nickstenning/envmgr
- Owner: nickstenning
- Created: 2012-07-19T10:14:00.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2012-07-20T17:28:17.000Z (about 14 years ago)
- Last Synced: 2024-04-29T09:01:39.656Z (about 2 years ago)
- Language: Python
- Size: 92.8 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 <