Conversation
Added instructions for setting up and running on Windows using WSL or Git Bash.
Reviewer's guide (collapsed on small PRs)Reviewer's GuideUpdates README.md with Windows setup instructions for users running the project through WSL or Git Bash, reusing the existing make-based setup, environment configuration, and development commands. File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Hey - I've found 2 issues
Prompt for AI Agents
Please address the comments from this code review:
## Individual Comments
### Comment 1
<location path="README.md" line_range="75-79" />
<code_context>
cp .env.example .env
make dev
```
+# Setup, configure and run for Windows (using WSL or Git Bash)
+make setup
+cp .env.example .env
+make dev
> Run `make help` to see all available commands. See [COMMANDS.md](./COMMANDS.md) for detailed workflows.
</code_context>
<issue_to_address>
**nitpick:** The Windows commands are placed after the closing ``` for the local-development example, so Markdown renders them as ordinary text rather than a shell code block. Users cannot reliably copy the advertised Windows setup sequence as a command block.
**Suggested fix:** Wrap the Windows heading and commands in a properly fenced `bash` block, or include the Windows commands in the existing fenced block with an appropriate comment.
````suggestion
# Setup, configure and run for Windows (using WSL or Git Bash)
make setup
cp .env.example .env
make dev
```
````
</issue_to_address>
### Comment 2
<location path="README.md" line_range="76" />
<code_context>
cp .env.example .env
make dev
```
+# Setup, configure and run for Windows (using WSL or Git Bash)
+make setup
+cp .env.example .env
</code_context>
<issue_to_address>
**nitpick:** The new section uses an H1 heading inside the `Quick Start` section, while the surrounding subsections use H3 headings. This breaks the README's heading hierarchy and causes the Windows instructions to appear as a new top-level document section.
**Suggested fix:** Use `### Setup, configure and run for Windows (using WSL or Git Bash)` to keep the section under `Quick Start`.
</issue_to_address>Sourcery assessment
Approved.
| ``` | ||
| # Setup, configure and run for Windows (using WSL or Git Bash) | ||
| make setup | ||
| cp .env.example .env | ||
| make dev |
There was a problem hiding this comment.
nitpick: The Windows commands are placed after the closing ``` for the local-development example, so Markdown renders them as ordinary text rather than a shell code block. Users cannot reliably copy the advertised Windows setup sequence as a command block.
Suggested fix: Wrap the Windows heading and commands in a properly fenced bash block, or include the Windows commands in the existing fenced block with an appropriate comment.
| ``` | |
| # Setup, configure and run for Windows (using WSL or Git Bash) | |
| make setup | |
| cp .env.example .env | |
| make dev | |
| # Setup, configure and run for Windows (using WSL or Git Bash) | |
| make setup | |
| cp .env.example .env | |
| make dev | |
| ``` |
| cp .env.example .env | ||
| make dev | ||
| ``` | ||
| # Setup, configure and run for Windows (using WSL or Git Bash) |
There was a problem hiding this comment.
nitpick: The new section uses an H1 heading inside the Quick Start section, while the surrounding subsections use H3 headings. This breaks the README's heading hierarchy and causes the Windows instructions to appear as a new top-level document section.
Suggested fix: Use ### Setup, configure and run for Windows (using WSL or Git Bash) to keep the section under Quick Start.
Added instructions for setting up and running on Windows using WSL or Git Bash.
Description
Related Issue
Closes #(issue_number)
Type of Change
Testing
Screenshots (if applicable)
Checklist
Additional Notes
Summary by Sourcery
Documentation: