Created
November 17, 2016 12:01
-
-
Save patrys/bda031aa47df2a1ec1a97d03a080e6d1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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