Skip to main content

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

Use the following install script to get the latest version of Devbox:

curl -fsSL https://get.jetpack.io/devbox | bash

Devbox requires the Nix Package Manager. If Nix is not detected on your machine when running a command, Devbox will automatically install it for you with the default settings for your OS. Don't worry: You can use Devbox without needing to learn the Nix Language.

note

If you want to try Devbox before installing it, you can open a cloud shell on your browser using the link below

Open In Devbox.sh

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.

  1. Open a terminal in a new empty folder.

  2. Initialize Devbox:

    devbox init

    This creates a devbox.json file in the current directory. You should commit it to source control.

  3. Search for packages to add to your Devbox project with devbox search. For example, to search for Python packages, you can run the devbox search python3

  4. 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
  5. 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

  1. Start a new shell that has your packages and tools installed:

    devbox shell
    info

    The 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.

  2. Use your favorite packages.

    In this example we installed Python 3.10, so let's use it.

    $ python --version
    Python 3.10.0

    We will also have the latest version of ripgrep installed in our shell:

    $ rg --version
    ripgrep 13.0.0
    -SIMD -AVX (compiled)
  3. Your regular tools are also available including environment variables and config settings.

    git config --get user.name
  4. To exit the Devbox shell and return to your regular shell:

    exit
  5. To share your project and shell, make sure to check in your devbox.json and devbox.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

Built with Devbox

[![Built with Devbox](https://jetpack.io/img/devbox/shield_galaxy.svg)](https://jetpack.io/devbox/docs/contributor-quickstart/)

Built with Devbox

[![Built with Devbox](https://jetpack.io/img/devbox/shield_moon.svg)](https://jetpack.io/devbox/docs/contributor-quickstart/)

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.

Get Involved