Posted on December 15, 2023
Automate Your Git Workflow: How to Create Daily Snapshots Effortlessly
Part 1: Introduction to Version Control with Git Understanding the Basics of Git Git is a popular version control system used by developers worldwide. It helps in tracking changes in source code during software development. Its primary function… Read More
Posted on December 14, 2023
How do I use flask-migrate to manage DB scheme changes?
Using Flask-Migrate to manage updates to your database is an excellent choice for handling schema changes over time. Flask-Migrate is an extension that handles SQLAlchemy database migrations for Flask applications using Alembic. Here’s how to set it up and use it.