wsgi.py 147 B

12345678910
  1. from botadero import create_app
  2. print()
  3. print(' Ejecutando desde uwsgi.py ')
  4. print()
  5. app = create_app()
  6. if __name__ == '__main__':
  7. app.run()