Skip to content

Instantly share code, notes, and snippets.

@taiwotman
Created April 30, 2020 16:24
Show Gist options
  • Save taiwotman/4b3df5fa6306df8d11d3663db60ac96d to your computer and use it in GitHub Desktop.
Save taiwotman/4b3df5fa6306df8d11d3663db60ac96d to your computer and use it in GitHub Desktop.
"""App entry point."""
from application import create_app
app = create_app()
if __name__ == "__main__":
app.run(host='0.0.0.0', debug=True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment