Promptaid-VIsion / .gitignore
SCGR's picture
Ignore runtime uploads folder
cd014bd
# ─── Node / React ───────────────────────────────
node_modules/
dist/
build/
.cache/
.vite/
# ─── Local env & secrets ────────────────────────
.env*
!.env.example
# ─── Python / FastAPI backend ───────────────────
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# Virtual environments
.venv/
venv/
# Distribution / packaging
*.egg-info/
dist/
build/
*.whl
# Testing / coverage
.coverage
.pytest_cache/
htmlcov/
.mypy_cache/
# ─── Docker ─────────────────────────────────────
*.log
docker-compose.override.yml
# ─── OS / editor cruft ─────────────────────────
.DS_Store
Thumbs.db
*.swp
.idea/
.vscode/
# ─── Prisma (if you’re using it) ────────────────
/generated/prisma
backend/postgres-data/
# Python
.venv/
venv/
**/__pycache__/
*.pyc
# Project
py_backend/.venv/
backend/postgres-data/
py_backend/.venv/
backend/postgres-data/
# Python junk
.venv/
venv/
**/__pycache__/
*.pyc
*.pyd
*.so
*.dll
*.exe
# Your project
py_backend/.venv/
backend/postgres-data/
backend/uploads/