chore: migrate build commands to poe

Signed-off-by: Tobias O <tobias.olenyi@envipath.com>
This commit is contained in:
2025-10-13 21:24:51 +13:00
parent 110fbe12c1
commit f76861a83f
2 changed files with 9 additions and 1 deletions

View File

@ -58,6 +58,8 @@ uv run poe dev
The application will be available at `http://localhost:8000`.
**Note:** The development server automatically starts a CSS watcher (`pnpm run dev`) alongside the Django server to rebuild CSS files when changes are detected. This ensures your styles are always up-to-date during development.
#### Other useful Poe commands:
You can list all available commands by running `uv run poe --help`.
@ -68,6 +70,7 @@ uv run poe db-down # Stop PostgreSQL
uv run poe migrate # Run migrations only
uv run poe bootstrap # Bootstrap data only
uv run poe shell # Open the Django shell
uv run poe build # Build frontend assets and collect static files
uv run poe clean # Remove database volumes (WARNING: destroys all data)
```