Files
NeveTimePanel/.dockerignore
arkonsadter 0ed8039644
Some checks failed
continuous-integration/drone/push Build is failing
Fixed dockerfile
2026-01-18 19:36:21 +06:00

112 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
# 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