Files
Refactored-App/.gitignore
2026-04-01 03:20:54 +02:00

48 lines
505 B
Plaintext

# Python
__pycache__/
*.py[cod]
*.pyo
*.pyd
.pytest_cache/
.mypy_cache/
.ruff_cache/
# Virtual environments
venv/
.venv/
env/
# Django
backend/db.sqlite3
backend/media/
backend/staticfiles/
# Packaging
*.egg-info/
dist/
build/
# Node / Svelte / Vite
frontend/node_modules/
frontend/.svelte-kit/
frontend/build/
frontend/dist/
frontend/.vite/
# Logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Environment files
.env
.env.*
!.env.example
# OS / editor
.DS_Store
Thumbs.db
.idea/
.vscode/