mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00

Co-authored-by: Fazle Arefin <fazlearefin@users.noreply.github.com> Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> Co-authored-by: spageektti <git@spageektti.cc>
28 lines
612 B
Markdown
28 lines
612 B
Markdown
# devenv
|
|
|
|
> Fast, Declarative, Reproducible and Composable Developer Environments using Nix.
|
|
> More information: <https://devenv.sh>.
|
|
|
|
- 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`
|