Skip to content

Deployment

Betrand edited this page Feb 26, 2026 · 1 revision

Deployment

Recommended production approach:

  1. Run Mallo with gunicorn on Linux/macOS
  2. Use a reverse proxy like Nginx
  3. Set debug=False
  4. Use a strong secret_key

Example:

gunicorn app:app --bind 0.0.0.0:8000

On Windows, use a production WSGI server that supports Windows or deploy on Linux.

Clone this wiki locally