Create a Dev Environment with Devbox
Background
Devbox is a command-line tool that lets you easily create reproducible, reliable dev environments. You start by defining the list of packages required by your development environment, and devbox uses that definition to create an isolated environment just for your application. Developers can start their dev environment by running devbox shell
within your project.
To learn more about how Devbox works, you can read our introduction
This Quickstart shows you how to install Devbox and use it to create a new Development Environment for your project.
Install Devbox
Follow the instruction from the installation guide.
Create a Development Environment
We'll create a new development environment with the packages we need. These packages will only be available when using this Devbox shell, ensuring we don’t pollute your machine.
-
Open a terminal in a new empty folder.
-
Initialize Devbox:
devbox init
This creates a
devbox.json
file in the current directory. You should commit it to source control. -
Search for packages to add to your Devbox project with
devbox search
. For example, to search for Python packages, you can run thedevbox search python3
-
You can add a package to your project by running
devbox add <package>
. For example, running the following will install the latest available version of RipGrep in your project:devbox add ripgrep
If you want to install a specific version of a package, you can run
devbox add <package>@<version>
. For example, to install Python 3.10, you can run:devbox add python@3.10
-
Your
devbox.json
file keeps track of the packages you've added, it should now look like this:{
"packages": [
"ripgrep@latest",
"python@3.10"
]
}
Launch your Development Environment
-
Start a new shell that has your packages and tools installed:
devbox shell
infoThe first time you run
devbox shell
may take a while to complete due to Devbox downloading prerequisites and package catalogs required by Nix. This delay is a one-time cost, and future invocations and package additions should resolve much faster.You can tell you're in a Devbox shell (and not your regular terminal) because the shell prompt and directory changed.
-
Use your favorite packages.
In this example we installed Python 3.10, so let's use it.
$ python --version
Python 3.10.0We will also have the latest version of ripgrep installed in our shell:
$ rg --version
ripgrep 13.0.0
-SIMD -AVX (compiled) -
Your regular tools are also available including environment variables and config settings.
git config --get user.name
-
To exit the Devbox shell and return to your regular shell:
exit
-
To share your project and shell, make sure to check in your
devbox.json
anddevbox.lock
file into source control. These files will ensure that developers get the same packages and environment when they run your project.
Add the Devbox Badge to your Repo
Once you publish your Devbox project to Github, you can help other developers get started by adding the Devbox Badge to your repo. Please copy the code snippets below and paste them into your README.md to add the badge
- Markdown
- HTML
[![Built with Devbox](https://www.jetify.com/img/devbox/shield_galaxy.svg)](https://www.jetify.com/devbox/docs/contributor-quickstart/)
<a href="https://www.jetify.com/devbox/docs/contributor-quickstart/">
<img
src="https://www.jetify.com/img/devbox/shield_galaxy.svg"
alt="Built with Devbox"
/>
</a>
- Markdown
- HTML
[![Built with Devbox](https://www.jetify.com/img/devbox/shield_moon.svg)](https://www.jetify.com/devbox/docs/contributor-quickstart/)
<a href="https://www.jetify.com/devbox/docs/contributor-quickstart/">
<img
src="https://www.jetify.com/img/devbox/shield_moon.svg"
alt="Built with Devbox"
/>
</a>
Next Steps
Learn more about Devbox
- Devbox Global: Learn how to use the devbox as a global package manager
- Devbox Scripts: Automate setup steps and configuration for your shell using Devbox Scripts.
- Configuration Guide: Learn how to configure your shell and dev environment with
devbox.json
. - Browse Examples: You can see how to create a development environment for your favorite tools or languages by browsing the Devbox Examples repo.
Use Devbox with your IDE
- Direnv Integration: Devbox can integrate with direnv to automatically activate your shell and packages when you navigate to your project.
- Devbox for Visual Studio Code: Install our VS Code extension to speed up common Devbox workflows or to use Devbox in a devcontainer.
Boost your dev environment with Jetify Cloud
- Jetify Devspace: Develop any where with Devbox-powered Cloud Dev Environments
- Jetify Secrets: Securely store and access your secrets and environment variables in your Devbox projects.
- Jetify Cache: Share and cache packages across all your Devbox projects and environments.
- Jetify Prebuilt Cache: Use the Jetify Public Cache to speed up your Devbox builds and share packages with the community.
Get Involved
- Join our Discord Community: Chat with the development team and our growing community of Devbox users.
- Visit us on Github: File issues and provide feedback, or even open a PR to contribute to Devbox or our Docs.