Tag Archives: CI/CD
How to Auto Generate & Deploy Docs for a Flask App with Sphinx AutoAPI on GitHub Pages
This post assumes you have all your Flask blueprints and other modules in the /app directory. If not, revise these snippets accordingly. 1. Install the Sphinx, with a theme and the autoapi extension: pip install sphinx sphinx-rtd-theme sphinx-autoapi 2. Create and navigate into the docs directory: mkdir docs cd docs 3. Run Sphinx quick start:…

How to Deploy/Migrate Web Apps to AWS EC2
This post is also published on the Medium publication Better Programming. See my post there. Move your apps from Heroku by setting up a continuous deployment workflow for your Python and PHP web apps Heroku is deprecating its free tiers for deploying web apps by Nov 28, 2022. If you have many low-traffic portfolio projects…