This commit is contained in:
xds
2026-03-16 12:12:56 +03:00
commit 9d886076d6
63 changed files with 4482 additions and 0 deletions

40
.gitignore vendored Normal file
View File

@@ -0,0 +1,40 @@
# Python
__pycache__/
*.py[cod]
*.egg-info/
dist/
build/
.eggs/
# Virtual environments
.venv/
venv/
env/
# IDE
.idea/
.vscode/
*.swp
*.swo
# Environment
.env
# OS
.DS_Store
Thumbs.db
# Alembic
backend/alembic/versions/__pycache__/
# Node
frontend/node_modules/
frontend/dist/
# Uploads
backend/uploads/
# Tests
.pytest_cache/
.coverage
htmlcov/