chore: add project scaffold

This commit is contained in:
2026-07-14 09:32:38 +03:30
commit b33716863b
9 changed files with 294 additions and 0 deletions

40
.gitignore vendored Normal file
View File

@@ -0,0 +1,40 @@
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
.venv/
venv/
env/
ENV/
*.egg-info/
.eggs/
build/
dist/
# Test and tooling caches
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
htmlcov/
# Local environment
.env
.env.*
!.env.example
# IDE and OS
.idea/
.vscode/
*.swp
*.swo
.DS_Store
Thumbs.db
# Docker/local runtime data
mongo-data/
redis-data/
rabbitmq-data/