Reputation: 63
I'm currently developing HTTP Rest API server using Flask. I don't have any static media, and all url are being served by @app.route pattern in Flask Framework. Can Flask run on Gunicorn alone with out webserver?
Upvotes: 1
Views: 549
Reputation: 925
So if load for your application is less and no static content to serve, in my opinion, flask + gunicorn should be OK.
Upvotes: 1