docs: update README regarding dev command

This commit is contained in:
2025-10-29 18:07:56 +13:00
parent 442d139217
commit ea8475f0e2

View File

@ -46,6 +46,7 @@ uv run poe setup
``` ```
This single command will: This single command will:
1. Start the PostgreSQL database using Docker Compose. 1. Start the PostgreSQL database using Docker Compose.
2. Run database migrations. 2. Run database migrations.
3. Bootstrap initial data (anonymous user, default packages, models). 3. Bootstrap initial data (anonymous user, default packages, models).
@ -56,11 +57,12 @@ After setup, start the development server:
uv run poe dev uv run poe dev
``` ```
This will start the css-watcher as well as the django-development server,
The application will be available at `http://localhost:8000`. 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. **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: #### Other useful Poe commands
You can list all available commands by running `uv run poe --help`. You can list all available commands by running `uv run poe --help`.