1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-15 23:35:42 +02:00
tldr/pages/common/devenv.md
Managor 73f3ad52d8
devenv, gt: conform with style guide and fix typo (#17498)
Co-authored-by: Dylan <145150333+dmmqz@users.noreply.github.com>
2025-08-06 21:49:03 +05:30

28 lines
635 B
Markdown

# devenv
> Fast, Declarative, Reproducible and Composable Developer Environments using Nix.
> More information: <https://devenv.sh/getting-started/#commands>.
- Initialize 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 {{path/to/file}}`
- Clean the environment variables and re-enter the shell in offline mode:
`devenv --clean --offline`
- Delete the previous shell generations:
`devenv gc`