diff --git a/pages/common/devenv.md b/pages/common/devenv.md new file mode 100644 index 0000000000..b77deec028 --- /dev/null +++ b/pages/common/devenv.md @@ -0,0 +1,28 @@ +# devenv + +> Fast, Declarative, Reproducible and Composable Developer Environments using Nix. +> More information: . + +- Initialise the environment: + +`devenv init` + +- Enter the Development Environment with relaxed hermeticity (state of being airtight): + +`devenv shell --impure` + +- Get detailed information about the current environment: + +`devenv info --verbose` + +- Start processes with `devenv`: + +`devenv up --config /{{file}}/{{path}}/` + +- Clean the environment variables and re-enter the shell in offline mode: + +`devenv --clean --offline` + +- Delete the previous shell generations: + +`devenv gc`