0

I did a dash app which works in a development enviroment in my own computer. I want to use the same files in other computer, and continue developing the code from there. I copied everything but it shows me a warning like this:

Serving Flask app "myDashApp" (lazy loading)
* Environment: production
 WARNING: Do not use the development server in a production environment.
 Use a production WSGI server instead.

I saw that some users had similar problems but I don't manage to solve it. Anyone has any idea of how to solve it?

Miguel Fabra
  • 63
  • 4
  • 11

1 Answers1

1

Solved! I used the package waitress instead of pure python. So I run my app like this:

waitress-serve my_dash:app.server
Miguel Fabra
  • 63
  • 4
  • 11