Skip to content

Instantly share code, notes, and snippets.

@devtdeng
Created April 5, 2016 03:24
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 devtdeng/bf655c74e5fb27715d0b25f619fa8d05 to your computer and use it in GitHub Desktop.
Save devtdeng/bf655c74e5fb27715d0b25f619fa8d05 to your computer and use it in GitHub Desktop.
#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