Skip to content

Instantly share code, notes, and snippets.

@patrys
Created November 17, 2016 12:01
Show Gist options
  • Save patrys/bda031aa47df2a1ec1a97d03a080e6d1 to your computer and use it in GitHub Desktop.
Save patrys/bda031aa47df2a1ec1a97d03a080e6d1 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
from tornado import httpserver, ioloop, wsgi
from saleor.wsgi import application
container = wsgi.WSGIContainer(application)
server = httpserver.HTTPServer(container)
server.listen(8000)
ioloop.IOLoop.current().start()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment