the file you run with flask is now wsgi.py

This commit is contained in:
Lynne Megido 2018-11-13 23:17:19 +10:00
förälder 9e4fa86099
incheckning ce5c77aefb
Signerad av: lynnesbian
GPG-nyckel ID: FB7B970303ACE499
2 ändrade filer med 4 tillägg och 3 borttagningar

3
web.py
Visa fil

@ -251,6 +251,3 @@ def cc_connect_complete():
@app.route('/settings')
def settings_page():
return render_template('settings.html')
if __name__ == "__main__":
app.run() #4734 is t9 for 'greg'

4
wsgi.py Normal file
Visa fil

@ -0,0 +1,4 @@
from web import app
if __name__ == "__main__":
app.run()