first commit

This commit is contained in:
2026-04-12 21:58:52 +03:00
commit acfaa2a40c
44 changed files with 2895 additions and 0 deletions

53
.gitignore vendored Normal file
View File

@@ -0,0 +1,53 @@
# Secrets and local environment files
.env
.env.*
!.env.example
bot/.env
bot/.env.*
!bot/.env.example
# Python cache and virtual environments
__pycache__/
*.py[cod]
*$py.class
.python-version
.venv/
venv/
env/
ENV/
# Python tooling and test artifacts
.pytest_cache/
.mypy_cache/
.ruff_cache/
.pyre/
.hypothesis/
.tox/
.nox/
.coverage
.coverage.*
htmlcov/
# Build artifacts
build/
dist/
site/
.eggs/
*.egg-info/
pip-wheel-metadata/
# Runtime files
*.log
*.pid
logs/
bot/logs/
# Local databases
db.sqlite3
db.sqlite3-journal
# IDE and OS files
.idea/
.vscode/
.DS_Store
Thumbs.db