Crates.io | activate |
lib.rs | activate |
version | 0.4.0 |
source | src |
created_at | 2024-02-06 22:08:27.138551 |
updated_at | 2024-11-07 16:14:03.704066 |
description | A sane way to manage environment-specific configurations. |
homepage | |
repository | https://github.com/mcmah309/activate |
max_upload_size | |
id | 1129534 |
size | 47,687 |
A tool to manage environment-specific configurations. Simplifying working across various settings like Development, Testing, Production, etc.
Code in different environments such as Dev, QA, Prod, etc. may need various configurations to run. The solution often used is loading environment variables or property files at build or run time. This by itself has a few drawbacks:
activate
solves all these problems.
active.toml
file declaratively defines environments.Different environments like Dev, QA, etc. may have assets, data files, executables, or program files that should be used in each. All of these can be switched over at once. e.g.
[dev.links]
"app/data" = "path/to/dev/data"
[qa.links]
"app/data" = "path/to/qa/data"
The result of the above is app/data
is created and symlinked to the file or directory of the active environment.
Often each environment has specific environment variables. This can be easily defined. e.g.
[dev.env]
HOST = "localhost"
PORT = 3000
[qa.env]
HOST = "178.32.44.2"
PORT = 443
To load an environment into your current shell, and unload any activate environment, run
eval "$(activate <name>)"`
Consider adding the following to ~/.bashrc
as a shortcut
a() {
eval "$(activate "$@")";
}
Then you can easily load and unload environments with an even shorter command
a dev
activate.toml
files can be distributed across a codebase, where each application has its own
activate.toml
file. From the root of the repo everything can be switched together with the -d
flag. e.g.
activate -d <name>
Any directory/subdirectory (respecting .gitignore
) with an activate.toml
file is switched to <name>
.
activate.toml
Schema[<ENV_NAME>.env]
<ENV_VAR_NAME> = <ENV_VAR_VALUE>
[<ENV_NAME>.links]
"<LINK_PATH_FROM_ROOT>" = "<SOURCE_PATH_FROM_ROOT>"
cargo install activate