Created
December 31, 2014 20:59
-
-
Save tylertreat/dcf866751c843c51e9af to your computer and use it in GitHub Desktop.
This file contains hidden or 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
if __name__ == '__main__': | |
app = create_app() | |
server = SocketIOServer( | |
('0.0.0.0', 5000), | |
SharedDataMiddleware(app, {}), | |
policy_server=False) | |
server.serve_forever() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment