From ea8475f0e20f13707b2b9e320c24c2d91a9d8cb0 Mon Sep 17 00:00:00 2001 From: Tobias O Date: Wed, 29 Oct 2025 18:07:56 +1300 Subject: [PATCH] docs: update README regarding dev command --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3db99700..23213a51 100644 --- a/README.md +++ b/README.md @@ -46,6 +46,7 @@ uv run poe setup ``` This single command will: + 1. Start the PostgreSQL database using Docker Compose. 2. Run database migrations. 3. Bootstrap initial data (anonymous user, default packages, models). @@ -56,11 +57,12 @@ After setup, start the development server: 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`. **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`.