feat(devcontainer): devcontainer.json + Open-in-Codespaces (#8)#10
Merged
Conversation
A thin dev environment so anyone can run the stack with zero local setup — Codespaces / VS Code Dev Containers spin up Docker-in-Docker, seed .env from the example, forward the four service ports, then `docker compose up -d`. - .devcontainer/devcontainer.json: ubuntu base + docker-in-docker feature; postCreateCommand seeds .env; forwardPorts 3000/3002/8765/8766 with labels; the Docker VS Code extension. Intentionally thin (no auto-up — pick your profile from #6). - README: Open-in-Codespaces + Open-in-Dev-Containers badges. Valid JSON; compose config unaffected (config -q exit 0). Closes #8. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_019tXZpN29akdmG8AEjgSZwk
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #8.
What: a thin dev environment so anyone can run the stack with zero local setup — Codespaces / VS Code Dev Containers spin up Docker-in-Docker, seed
.envfrom the example, forward the four service ports, thendocker compose up -d.How:
.devcontainer/devcontainer.json— ubuntu base + the docker-in-docker feature;postCreateCommandseeds.env;forwardPorts3000/3002/8765/8766 with labels; the Docker VS Code extension. Intentionally thin (no auto-up — pick your profile from Compose profiles: minimal / full / governance (leaves slot for agenteval/formbridge) #6).Valid JSON; compose config unaffected (
config -qexit 0).