I have built a simple Flask app and I want do deploy it on Digital Ocean. I tried gunicorn but debugger and auto reloader no longer works. I was a php developer and I like to save changes and reload to see changes and errors.
Asked
Active
Viewed 52 times
1 Answers
0
You can use gunicorn do deploy your Flask app as described in this tutorial
Gunicorn comes with the ability to log and reload the application.
Apparently you cannot use gunicorn for debug mode as described here

Community
- 1
- 1

xssChauhan
- 2,728
- 2
- 25
- 36
-
What about the debugger? Is there any option to see the debugger page? – Burhan T. Apr 22 '17 at 11:45
-
@BurhanT. Edited the answer to include that. – xssChauhan Apr 22 '17 at 11:57