All checks were successful
CI/CD Pipeline / build-and-deploy (push) Successful in 43s
Unused component that also carried several security issues (default admin credentials, hardcoded Flask secret key, debug mode, plaintext passwords). Cleaned up compose files, CI/CD pipeline, and docs accordingly; also dropped the stale IS_PROD config docs in favor of the current .env-based setup. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
68 lines
703 B
Text
68 lines
703 B
Text
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
.pytest_cache/
|
|
|
|
# Virtual environments
|
|
venv/
|
|
env/
|
|
ENV/
|
|
*.egg
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Databases
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
data/
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Docker
|
|
.dockerignore
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.backup
|
|
|
|
|
|
# Node modules (если будут использоваться)
|
|
node_modules/
|
|
npm-debug.log
|
|
|
|
# Временные файлы
|
|
*.tmp
|
|
*.bak
|
|
*.cache
|
|
|
|
# Файлы кеша
|
|
.cache/
|
|
|
|
# Документация и временные файлы
|
|
LichessClientTG_bot/docs/*.html
|
|
LichessClientTG_bot/docs/*.txt
|
|
LichessClientTG_bot/docs/*_files/
|
|
LichessWebServices/*.txt
|
|
|
|
|
|
|
|
|