Installation

To install system-wide, run as superuser:

$ pip3 install config-decorator

To install user-local, simply run:

$ pip3 install -U config-decorator

To install within a virtualenv, try:

$ cd "$(mktemp -d)"

$ python3 -m venv .venv

$ . ./.venv/bin/activate

(config-decorator) $ pip install config-decorator

To develop on the project, link to the source files instead:

(config-decorator) $ deactivate
$ git clone git@github.com:doblabs/config-decorator.git
$ cd config-decorator
$ python3 -m venv config-decorator
$ . ./.venv/bin/activate
(config-decorator) $ make develop

After creating the virtual environment, it’s easy to start developing from a fresh terminal:

$ cd config-decorator
$ . ./.venv/bin/activate
(config-decorator) $ ...