1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-24 19:15:27 +02:00

devenv: add page (#12862)

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>
This commit is contained in:
mj 2024-06-05 02:50:38 +10:00 committed by GitHub
parent e597b69a14
commit 8353b69acf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

28
pages/common/devenv.md Normal file
View file

@ -0,0 +1,28 @@
# 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`