mindmap / .gitignore
Rsnarsna's picture
Upload 44 files
b0c3c39 verified
raw
history blame contribute delete
473 Bytes
#test file
test.py
# Root
*.log
.env
__pycache__/
*.pyc
*.pyo
*.pyd
*.sqlite3
# Environment Variables
.env/
# Backend (Python/Flask)
virtual-env/
venv/
backend/__pycache__/
backend/*.pyc
backend/*.db
# React Frontend (Node)
fontend/node_modules/
fontend/build/
fontend/.env
# OS Files
.DS_Store
Thumbs.db
# IDEs and Editors
.vscode/
.idea/
*.swp
# Coverage / Testing
coverage/
*.cover
*.lcov
htmlcov/
# Logs
logs/
*.log