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
부모 9e4fa86099
커밋 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 Normal file
파일 보기

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