All public logs
Combined display of all available logs of XPUB & Lens-Based wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 15:42, 8 April 2026 Manetta talk contribs created page Flask/Gunicorn (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''' <...")