Some checks failed
continuous-integration/drone/push Build encountered an error
114 lines
1.3 KiB
Plaintext
114 lines
1.3 KiB
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# CI/CD
|
|
.drone.yml*
|
|
.github
|
|
|
|
# Documentation
|
|
*.md
|
|
!README.md
|
|
CHANGELOG.md
|
|
LICENSE
|
|
ОБНОВЛЕНИЯ.md
|
|
|
|
# IDE
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Node.js
|
|
frontend/node_modules
|
|
frontend/.vite
|
|
frontend/npm-debug.log*
|
|
frontend/yarn-debug.log*
|
|
frontend/yarn-error.log*
|
|
|
|
# Python
|
|
backend/__pycache__
|
|
backend/*.pyc
|
|
backend/*.pyo
|
|
backend/*.pyd
|
|
backend/.Python
|
|
backend/env
|
|
backend/venv
|
|
backend/.venv
|
|
backend/pip-log.txt
|
|
backend/pip-delete-this-directory.txt
|
|
backend/.pytest_cache
|
|
backend/.coverage
|
|
backend/htmlcov
|
|
daemon/__pycache__
|
|
|
|
# Data (будет монтироваться как volume)
|
|
backend/servers/*
|
|
!backend/servers/.gitkeep
|
|
backend/data/*
|
|
!backend/data/.gitkeep
|
|
|
|
# Logs
|
|
*.log
|
|
logs/*
|
|
!logs/.gitkeep
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
backend/.env*
|
|
frontend/.env*
|
|
daemon/.env*
|
|
|
|
# Docker
|
|
docker-compose.yml
|
|
docker-compose.*.yml
|
|
.dockerignore
|
|
docker-start.bat
|
|
docker-stop.bat
|
|
|
|
# Tests
|
|
tests
|
|
test
|
|
*.test.js
|
|
*.spec.js
|
|
__tests__
|
|
|
|
# Build artifacts
|
|
build
|
|
dist
|
|
*.egg-info
|
|
.pytest_cache
|
|
|
|
# Temporary files
|
|
tmp
|
|
temp
|
|
*.tmp
|
|
*.temp
|
|
|
|
# Batch files (Windows specific)
|
|
*.bat
|
|
|
|
# Postman collections
|
|
*.postman_collection.json
|
|
|
|
# Nginx configs (handled separately)
|
|
nginx/*
|
|
|
|
# Keys and certificates
|
|
*.key
|
|
*.pem
|
|
*.crt
|
|
*.p12
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.backup
|