Managed hosting
Ship real-time Django apps without assembling the ASGI, WebSocket, and rollout plumbing yourself.
The deploy path
Run these commands from the project directory. Login is a one-time setup; the deploy command guides the project through preflight and rollout.
uv pip install "djust[deploy]"
djust deploy login
djust deploy
djust deploy status
Deploy doctor checks production settings before anything rolls out.
Managed ASGI hosting keeps HTTP and WebSocket traffic on the same application path.
Check status, open the live URL, and test the interactions that matter to your users.
Production checklist
- Set production environment variables and secrets.
- Confirm database, static files, and allowed hosts are production-ready.
- Use an ASGI deployment path so WebSockets remain available.
- Run the deploy status command after rollout and share the live URL.
Need the deeper self-managed architecture guide? Read the canonical deployment documentation.