updated readme

This commit is contained in:
ilanq7 2025-10-15 18:02:44 +02:00
parent ab1a42091d
commit ef15c29721

View File

@ -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/