docs: Add DevContainer and Docker setup instructions to README (Closes #2)#7
docs: Add DevContainer and Docker setup instructions to README (Closes #2)#7echelonnought wants to merge 1 commit intomainfrom
Conversation
Implements Issue #2 — Update README instructions to include devcontainer instructions. Changes: - Restructure Installation into 3 setup options (A/B/C) - Option A: DevContainer setup (recommended) with step-by-step VS Code instructions - Option B: Docker Compose setup without VS Code DevContainers - Option C: Manual installation (original instructions preserved) - Add Docker Desktop to Prerequisites - Reference .devcontainer/devcontainer.json and .docker/docker-compose.yml configs - Note auto-installed extensions (ESLint, GitLens) and postCreateCommand
|
Warning Rate limit exceeded
To keep reviews running without waiting, you can enable usage-based add-on for your organization. This allows additional reviews beyond the hourly cap. Account admins can enable it under billing. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Review rate limit: 0/1 reviews remaining, refill in 35 minutes and 6 seconds.Comment |
Detailed Implementation NotesWhy three options?The original issue noted that devcontainers are the way most people will want to run the app. However, not everyone uses VS Code, and some contributors may prefer a bare-metal setup. The three-tier structure (DevContainer > Docker > Manual) lets contributors choose based on their tooling. What the DevContainer does under the hoodThe .devcontainer/devcontainer.json references .docker/docker-compose.yml which:
What was preservedThe original manual installation instructions are fully preserved as Option C. No existing documentation was removed -- only reorganized and expanded. Files Changed
|
| 2. Build and start the container: | ||
| ```sh | ||
| docker compose -f .docker/docker-compose.yml up -d | ||
| ``` |
There was a problem hiding this comment.
could be just me but this was unsuccessful at
RUN corepack enable && corepack prepare pnpm@* --activate && pnpm install --frozen-lockfile:
Further error log mentions
Error [ERR_UNKNOWN_BUILTIN_MODULE]: No such built-in module: node:sqlite
so will look into that
Thanks for working on this.
Summary
Implements Issue #2 -- Update README instructions to include devcontainer instructions.
What Changed
The README's setup section has been restructured from a single installation path into three clearly documented options:
Option A: DevContainer Setup (Recommended)
Option B: Docker Setup (Without VS Code)
Option C: Manual Installation
Other Changes
Files Changed