- Serving Flask app "application" (lazy loading)
- Environment: production WARNING: Do not use the development server in a production environment. Use a production WSGI server instead.
Debug mode: off
@application.route('/', methods=['POST', 'GET']) @application.route('/') def default():
Originally, running python application.py works - the page appears but after a while of doing the same thing, the web page doesn't appear anymore and instead the warning above shows in my terminal. What is the problem?