run.py 109 B

123456
  1. from app import create_app
  2. app = create_app()
  3. if __name__ == '__main__':
  4. app.run(debug=True, port=5000)