gevent with Django as daemon
Posted
by
jonathonmorgan
on Server Fault
See other posts from Server Fault
or by jonathonmorgan
Published on 2011-11-16T17:39:46Z
Indexed on
2011/11/16
17:56 UTC
Read the original article
Hit count: 215
I've been developing an app using django_socketio (a python port of the Node equivalent), which relies on gevent. It ships with a Django management command that runs gevent's pywsgi server, but that of course stops when I close my terminal window, just like Django's dev server.
This is a proof of concept, and there's no expectation that it would hold up in a production environment, but I'd like to have the server at least "permanently" process HTTP requests, so I don't need to manually start the dev server in order to demo.
I'm assuming I need to run this as a daemon process, but prior to this I've only used apache and mod_wsgi, so unsure of where to begin, or even how I would go about starting a daemon. I found gevent-spawn, which looks promising, but it's unclear to me how that code is executed.
Basically, how would I use gevent to serve a Django app in a setting without manually starting/stopping the server?
© Server Fault or respective owner