Feat/add developer docs for windows (#213)

* docs: add windows commands for developer setup

* feat: add windows scripts

* fix(ui): make dev script cross-platform with cross-env

* feat(scripts): enhance migration scripts for Alembic environment setup and add virtual environment activation
This commit is contained in:
Muhammad Qasim 2026-04-03 06:34:13 +05:00 committed by GitHub
parent e7adbc7bad
commit 66b085dde2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 443 additions and 13 deletions

View file

@ -9,11 +9,17 @@ description: "Common issues and solutions for running Dograh AI"
### When a port is already in use:
##### Check what's using the port first and then kill the process (may require sudo on Linux)
```bash
<CodeGroup>
```bash macOS/Linux
lsof -i :3010
kill -9 $(lsof -t -i :3010)
```
```powershell Windows
netstat -ano | findstr :3010
# Find the PID in the last column, then:
Stop-Process -Id <PID> -Force
```
</CodeGroup>
### When Docker containers are using the ports (with auto-restart enabled):