This repository was created to learn how to set up a development environment using devcontainer for Claude Code. It includes a minimal Rust project and the necessary configuration files to run the code inside a VS Code devcontainer.
- Rust project scaffold (
src/main.rs
) - Devcontainer configuration (
.devcontainer/
) - Scripts for container management (
mise-tasks/
) - Example prompt and design documents
- Install mise (https://mise.jdx.dev) if you haven't already.
- Run
mise run container-up
to start the devcontainer. - Inside the container you can build and run the project:
cargo build cargo run
- Use the provided scripts to manage worktrees and stop the container.
Feel free to experiment with the setup, add more examples, or improve the documentation.