This commit is contained in:
Mikan
2026-06-20 22:21:47 +03:00
parent 8514c63ec6
commit 0e1616d51c
12 changed files with 206 additions and 35 deletions

50
.dockerignore Normal file
View File

@@ -0,0 +1,50 @@
# Python
__pycache__/
**/*.pyc
**/*.pyo
**/.pytest_cache/
**/.ruff_cache/
**/.mypy_cache/
.venv/
venv/
*.egg-info/
.coverage
.coverage.*
htmlcov/
# Node / Frontend
**/node_modules/
frontend/dist/
frontend/.vite/
npm-debug.log*
yarn-*
# Environment & secrets
.env
.env.local
.env.*.local
# Data & uploads (kept on volumes, not in image)
data/
!data/.gitkeep
*.db
*.sqlite3
# IDE / OS
.vscode/
.idea/
*.swp
.DS_Store
Thumbs.db
# Logs
*.log
logs/
# Tests artifacts
.pytest_cache/
tests/.cache/
# Git
.git/
.gitignore