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
vanhempi 9e4fa86099
commit ce5c77aefb
Allekirjoittanut: lynnesbian
GPG avaimen ID: FB7B970303ACE499
2 muutettua tiedostoa jossa 4 lisäystä ja 3 poistoa

3
web.py
Näytä tiedosto

@ -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
Näytä tiedosto

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