This commit is contained in:
2026-03-18 15:44:11 +07:00
commit 6b69d4f64c
21 changed files with 1237 additions and 0 deletions

138
.dockerignore Normal file
View File

@@ -0,0 +1,138 @@
# =============================================================================
# Git
# =============================================================================
.git
.gitea
.github
.gitlab
.gitlab-ci.yml
.gitattributes
.pre-commit-config.yaml
# =============================================================================
# Python virtual environments
# =============================================================================
.venv
venv
env
ENV
# =============================================================================
# Python cache
# =============================================================================
__pycache__/
*.py[cod]
*.pyo
*.pyd
*.so
# =============================================================================
# Python tooling
# =============================================================================
.mypy_cache/
.pytest_cache/
.ruff_cache/
.pytype/
.pyre/
.pyright/
# =============================================================================
# Testing / Coverage
# =============================================================================
.coverage
.coverage.*
htmlcov/
.tox/
.nox/
tests/
test/
coverage.xml
# =============================================================================
# Build artifacts
# =============================================================================
build/
dist/
.eggs/
*.egg-info/
pip-wheel-metadata/
# =============================================================================
# Logs
# =============================================================================
*.log
logs/
log/
# =============================================================================
# Node / Frontend
# =============================================================================
node_modules/
.next/
.nuxt/
out/
coverage/
*.tsbuildinfo
# =============================================================================
# IDE / Editor
# =============================================================================
.idea/
.vscode/
*.swp
*.swo
*~
.DS_Store
Thumbs.db
# =============================================================================
# Environment files
# =============================================================================
.env
.env.*
!.env.example
!.env.sample
# =============================================================================
# Databases
# =============================================================================
*.db
*.sqlite
*.sqlite3
# =============================================================================
# Secrets
# =============================================================================
*.pem
*.key
*.crt
*.p12
*.pfx
secrets/
# =============================================================================
# Temporary
# =============================================================================
tmp/
temp/
*.tmp
*.temp
.cache/
# =============================================================================
# Jupyter
# =============================================================================
.ipynb_checkpoints/
# =============================================================================
# ML artifacts
# =============================================================================
*.pt
*.pth
*.onnx
*.h5
*.ckpt
*.safetensors
*.npy
*.npz
*.parquet