main.py 161 B

123456
  1. from app import create_app
  2. app = create_app()
  3. if __name__ == '__main__':
  4. app.run() ## debug=True auto re-runs websever upon change turn off for production