Commit 1e59ef81 authored by Denis Bilenko's avatar Denis Bilenko

rename run.py to run_standalone.py; add run_uwsgi

--HG--
rename : examples/webchat/run.py => examples/webchat/run_standalone.py
parent 0e95842a
#!/usr/bin/python
from gevent import monkey; monkey.patch_all()
from gevent.wsgi import WSGIServer
import sys
import os
import traceback
from django.core.handlers.wsgi import WSGIHandler
from django.core.management import call_command
from django.core.signals import got_request_exception
from django.core.management import call_command
sys.path.append('..')
os.environ['DJANGO_SETTINGS_MODULE'] = 'webchat.settings'
def exception_printer(sender, **kwargs):
traceback.print_exc()
got_request_exception.connect(exception_printer)
call_command('syncdb')
print 'Serving on 8088...'
WSGIServer(('', 8088), WSGIHandler()).serve_forever()
application = WSGIHandler()
#!/usr/bin/python
from gevent import monkey; monkey.patch_all()
from gevent.wsgi import WSGIServer
from application import application
print 'Serving on 8000...'
WSGIServer(('', 8000), application).serve_forever()
#!/bin/sh
uwsgi --loop gevent --http-socket :8000 --module application --async 1000
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment