Hacker News new | ask | show | jobs
by cbzbc 310 days ago
How do people deploy this framework typically - speaking for myself, I found NGINX Unit somewhat fiddly.
3 comments

I tend to deploy all Python based apps using gunicorn behind a caddy proxy. Take a look at the compose.yml https://github.com/confuzeus/simple-django/blob/master/ansib...

Deployment is as simple as `docker compose pull && docker compose up -d`.

uvicorn systemd service behind nginx reverse proxy
Or just docker/uvicorn
With uvicorn.