the file you run with flask is now wsgi.py

このコミットが含まれているのは:
Lynne Megido 2018-11-13 23:17:19 +10:00
コミット ce5c77aefb
署名者: lynnesbian
GPGキーID: FB7B970303ACE499
2個のファイルの変更4行の追加3行の削除

3
web.py
ファイルの表示

@ -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 ノーマルファイル
ファイルの表示

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