From d4e859f9a70617d082e12a98ceb4a2ac2ec76781 Mon Sep 17 00:00:00 2001 From: Ryan Chen Date: Mon, 22 Dec 2025 14:46:50 -0500 Subject: [PATCH] gitignore --- .gitignore | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4877c52 --- /dev/null +++ b/.gitignore @@ -0,0 +1,33 @@ +# Python-generated files +__pycache__/ +*.py[oc] +build/ +dist/ +wheels/ +*.egg-info + +# Virtual environments +.venv + +# Database and uploads +backend/instance/ +backend/static/images/* +!backend/static/images/.gitkeep + +# Environment variables +.env +.env.local + +# Frontend +frontend/node_modules/ +frontend/dist/ +frontend/.vite/ + +# Migrations (keep the directory structure but ignore auto-generated content if needed) +# migrations/versions/*.py + +# IDE +.vscode/ +.idea/ +*.swp +*.swo