Skip to content

Instantly share code, notes, and snippets.

@mrchnk
Created February 10, 2019 18:41
Show Gist options
  • Select an option

  • Save mrchnk/43f6a27e7c18cbcbba035e9a4b6cf415 to your computer and use it in GitHub Desktop.

Select an option

Save mrchnk/43f6a27e7c18cbcbba035e9a4b6cf415 to your computer and use it in GitHub Desktop.
debug wsgi application using python run configuration
from livereload import Server
from web_app import application
if __name__ == "__main__":
server = Server(application)
server.watch(".")
server.serve(8080)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment