Created
February 10, 2019 18:41
-
-
Save mrchnk/43f6a27e7c18cbcbba035e9a4b6cf415 to your computer and use it in GitHub Desktop.
debug wsgi application using python run configuration
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
| 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