📚 All my TILs on gunicorn

Neat! You found every TIL snippet that I have written about gunicorn.

Atom feed for gunicorn

gunicorn Reload app served via gunicorn when specific files change - 2022-12-07

I like using 💚🦄 gunicorn to serve Flask apps, like httpcat.us. The Web site will be reloaded when app.py is modified with --reload. If I want to also reload the Web service when various HTML, CSS and JavaScript files are changed, I can use --reload-extra-file. In the end, it looks something like: …