devbox/README.md
2026-03-17 12:15:07 -07:00

21 lines
401 B
Markdown

# Development Environment in a Box
My dotfiles, with a devcontainer image to boot. Depends on
[fish-shell](https://fishshell.com/) and
[container](https://github.com/apple/container).
## Usage
```fish
# Setup
make fish-install
EMAIL=git@example.com make questing
# Execution
cd ~/path/to/project
devbox --cpus=4 --mem=8G my-project
# Cleanup
container stop my-project
container rm my-project
```