From b7a2f2ed4fc214da2b8c42df9ce7686524f75b22 Mon Sep 17 00:00:00 2001 From: Cipher Vance Date: Thu, 28 Aug 2025 20:30:58 -0500 Subject: [PATCH] feat: updated gitignore for migrations --- .gitignore | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 1800114..a4d0d9e 100644 --- a/.gitignore +++ b/.gitignore @@ -171,4 +171,19 @@ cython_debug/ .ruff_cache/ # PyPI configuration file -.pypirc \ No newline at end of file +.pypirc + +# Flask-Migrate / Alembic +# Keep migrations in Git, but ignore cache/compiled files +migrations/__pycache__/ +migrations/*.pyc + +# Docker +*.pid +*.log +docker-compose.override.yml +.docker/ +.wheels/ + +# VSCode / Editor configs +.vscode/ \ No newline at end of file