Skip to content

Instantly share code, notes, and snippets.

@brianz
Created September 15, 2016 21:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brianz/f74825460c85c5b5f59255d644a2576a to your computer and use it in GitHub Desktop.
Save brianz/f74825460c85c5b5f59255d644a2576a to your computer and use it in GitHub Desktop.
wsgi setup for calculator_service demo
[uwsgi]
http=0.0.0.0:8888
wsgi-file=wsgi_handler.py
processes=1
threads=1
py-auto-reload=3
from calculator_service.service import CalculatorService
service = CalculatorService()
application = service.get_wsgi_application
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment