Adding a production server to Python Flask in Windows

Viewed 17013

I have an application setup in Flask and running on localhost in a Windows environment. All of the tutorials I have read said to not use the default Flask server in production.

The production servers Gunicorn and uWSGI both only work in Unix. Is there a way to run either one of those through Windows?

Or do I need to switch the project over to a UNIX development environment?

3 Answers

Waitress is a pure python solution for both Windows and Nix platforms that is no more complex to set up than the development server.

Related