89 lines
873 B
Plaintext
89 lines
873 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
env/
|
|
venv/
|
|
ENV/
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Database
|
|
data/
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
|
|
# IDE & editors
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
|
|
# Build artifacts
|
|
*.egg-info/
|
|
.eggs/
|
|
|
|
# OS-specific
|
|
Thumbs.db
|
|
.DS_Store
|
|
|
|
# Sensitive config
|
|
config.json
|
|
config.yml
|
|
credentials.json
|
|
keys.json
|
|
bot_secrets.json
|
|
|
|
# Mini App (если будете хостить)
|
|
client-side/
|
|
frontend/
|
|
build/
|
|
dist/
|
|
|
|
# Docker (если добавите позже)
|
|
Dockerfile
|
|
docker-compose.yml
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
|
|
# Documentation (опционально)
|
|
docs/_build/
|
|
docs/_static/
|
|
docs/_templates/ |