chore: add project ignore rules

This commit is contained in:
2026-06-21 01:39:16 +03:30
commit d95f3c27c1

36
.gitignore vendored Normal file
View File

@@ -0,0 +1,36 @@
# Python
__pycache__/
*.py[cod]
*.pyo
.pytest_cache/
.ruff_cache/
.coverage
htmlcov/
.venv/
venv/
env/
test.sqlite3
db.sqlite3
staticfiles/
media/
# Node / frontend
node_modules/
dist/
.vite/
*.tsbuildinfo
# Environment
.env
.env.*
!.env.sample
# Docker / local runtime
postgres_data/
logs/
# OS / editor
.DS_Store
Thumbs.db
.idea/
.vscode/