Hi All,
First time using a web framework, hope to get advice on the correct approach.
My aim is to have dash application which will be used something about 300 users.
When i started my app with
app.server.run(port=‘8050’, host=‘0.0.0.0’)
there is a massege:
- Serving Flask app “app” (lazy loading)
- Environment: production
WARNING: This is a development server. Do not use it in a production deployment.
Use a production WSGI server instead. - Debug mode: off
So how can i start my app in prodaction, with someone WSGI server? Now i have one file (dashboard.py) with my app. Some instructions please.