Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions devkit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -440,3 +440,26 @@ my.node.label=node-${NODE_ID}
```bash
just start 1 my-feature
```

## Windows Troubleshooting

### Git Bash Path Issues

If `just start-build` fails on Windows Git Bash due to Docker path conversion issues, try:

```bash
export AUTOMQ_DEV_HOME=/c/automq/devkit
docker compose up -d
```

Alternatively, running Docker Compose directly may work better than `just start-build` on Windows environments.

### Docker Engine Errors

If Docker commands fail with:

```text
failed to connect to the docker API
```

Restart Docker Desktop and verify the engine is running before starting the devkit.
Loading