diff --git a/README.md b/README.md index 5ffd045..054b336 100644 --- a/README.md +++ b/README.md @@ -46,9 +46,11 @@ python manage.py createsuperuser Run (single process ONLY): ```bash -daphne -b 127.0.0.1 -p 8000 config.asgi:application -# or for quick dev -python manage.py runserver 0.0.0.0:8000 # fine for dev only +# Development (auto-reload for HTTP only; WS fine for single process) +python manage.py runserver 127.0.0.1:8000 + +# Production-like single-process (Channels ASGI via daphne) +python -m daphne -b 127.0.0.1 -p 8000 project.config.asgi:application ``` Visit: http://127.0.0.1:8000/