Y
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
brokegrammer
310 days ago
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`.
link
intalentive
310 days ago
uvicorn systemd service behind nginx reverse proxy
link
indigodaddy
310 days ago
Or just docker/uvicorn
link
devjab
310 days ago
With uvicorn.
link
Deployment is as simple as `docker compose pull && docker compose up -d`.