wip
This commit is contained in:
parent
3b2f1db4ce
commit
5c16964b76
47 changed files with 2080 additions and 1053 deletions
6
wsgi.py
6
wsgi.py
|
@ -5,9 +5,9 @@ from app import create_app
|
|||
# os.environ['DATABASE_URL'] = 'your_production_database_url'
|
||||
|
||||
# Create a production application
|
||||
app = create_app('production')
|
||||
app = create_app("production")
|
||||
|
||||
if __name__ == '__main__':
|
||||
if __name__ == "__main__":
|
||||
# This is only used for development
|
||||
# In production, a WSGI server would import this file
|
||||
app.run(host='0.0.0.0', port=5000)
|
||||
app.run(host="0.0.0.0", port=5000)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue