Created
April 5, 2016 03:24
-
-
Save devtdeng/bf655c74e5fb27715d0b25f619fa8d05 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
#Profile | |
web: uwsgi --http :$PORT --wsgi-file hello-tdeng.py | |
#hello.py | |
def application(env, start_response): | |
start_response('200 OK', [('Content-Type','text/html')]) | |
return [b"Hello World"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment