Add .gitignore for Python and Node projects

This commit is contained in:
2025-12-19 12:59:49 +11:00
parent f4f9794359
commit 97a3b750e9

83
.gitignore vendored Normal file
View File

@@ -0,0 +1,83 @@
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
env/
venv/
ENV/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# FastAPI / Uvicorn
*.db
*.sqlite
*.sqlite3
# Environment variables
.env
.env.local
.env.*.local
# IDEs
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
# Node
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
dist/
dist-ssr/
*.local
# Testing
.coverage
htmlcov/
.pytest_cache/
coverage/
# Logs
logs/
*.log
# OS
Thumbs.db
.DS_Store
# Database
*.db
*.sqlite
family_hub.db
# Docker
.dockerignore
# Temporary files
*.tmp
*.temp
*.bak
*.swp
*~