Your dev env,
already prepped.
One tool to manage languages, env vars, and tasks per project, reproducibly.
mise-en-place
Dev tools, env vars, and tasks in one CLI
One tool to manage languages, env vars, and tasks per project, reproducibly.
Dev tools, env vars, and tasks in one CLI
— pantry · 900+ tools, 1 toml file —
Chef's Special
New from en.dev by @jdx. aube uses your existing lockfile and is ready to try in beta.
The Recipe
$ curl https://mise.run | sh
✓ mise installed
$ mise doctor
✓ mise is ready$ mise use node@24 python@3.13 terraform@1
✓ wrote mise.toml
$ mise install
✓ installed 3 tools$ cat .env.local
DATABASE_URL=postgres://localhost/orders
$ mise env -s bash
export DATABASE_URL=postgres://localhost/orders$ mise run test
→ lint · typecheck · unit · e2e
✓ 4 tasks complete
$ mise run deploy
✓ shipped