Flask/Gunicorn: Revision history

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

    8 April 2026

    • curprev 15:4215:42, 8 April 2026Manetta talk contribs 1,244 bytes +1,244 Created page with "''A subpage of Flask'' ==How to install a Flask application using Gunicorn?== First install gunicorn and python-dotenv: $ uv pip3 install gunicorn python-dotenv And then make or change the following files: '''Makefile''' <pre> include .env export default: local local: @flask --app ${APPLICATION_NAME} --debug run server: @SCRIPT_NAME=${APPLICATION_ROOT} gunicorn -b localhost:${PORTNUMBER} --reload ${APPLICATION_NAME}:app </pre> '''.env''' <..."