Files
sport-platform/.gitignore
2026-03-16 13:02:03 +03:00

41 lines
361 B
Plaintext

# Python
__pycache__/
*.py[cod]
*.egg-info/
dist/
build/
.eggs/
# Virtual environments
.venv/
venv/
env/
# IDE
.idea/
.vscode/
*.swp
*.swo
# Environment
backend/.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/