2024-06-05 02:50:38 +10:00
|
|
|
# devenv
|
|
|
|
|
|
|
|
> Fast, Declarative, Reproducible and Composable Developer Environments using Nix.
|
2025-08-06 19:19:03 +03:00
|
|
|
> More information: <https://devenv.sh/getting-started/#commands>.
|
2024-06-05 02:50:38 +10:00
|
|
|
|
2025-08-06 19:19:03 +03:00
|
|
|
- Initialize the environment:
|
2024-06-05 02:50:38 +10:00
|
|
|
|
|
|
|
`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`:
|
|
|
|
|
2025-08-06 19:19:03 +03:00
|
|
|
`devenv up --config {{path/to/file}}`
|
2024-06-05 02:50:38 +10:00
|
|
|
|
|
|
|
- Clean the environment variables and re-enter the shell in offline mode:
|
|
|
|
|
|
|
|
`devenv --clean --offline`
|
|
|
|
|
|
|
|
- Delete the previous shell generations:
|
|
|
|
|
|
|
|
`devenv gc`
|