2025-09-29 09:31:37 +04:00
|
|
|
# .dockerignore - Files and directories to exclude from Docker build context
|
|
|
|
|
|
|
|
|
|
# Git
|
|
|
|
|
.git
|
|
|
|
|
.gitignore
|
|
|
|
|
.gitmodules
|
2025-11-03 12:30:55 +02:00
|
|
|
.github/
|
2025-09-29 09:31:37 +04:00
|
|
|
|
|
|
|
|
# Documentation
|
|
|
|
|
*.md
|
2025-11-03 12:30:55 +02:00
|
|
|
!README.md
|
2025-09-29 09:31:37 +04:00
|
|
|
docs/
|
|
|
|
|
Documentation/
|
|
|
|
|
|
|
|
|
|
# IDE and editor files
|
|
|
|
|
.vscode/
|
|
|
|
|
.idea/
|
|
|
|
|
*.swp
|
|
|
|
|
*.swo
|
|
|
|
|
*~
|
|
|
|
|
|
|
|
|
|
# OS generated files
|
|
|
|
|
.DS_Store
|
|
|
|
|
Thumbs.db
|
2025-11-03 12:30:55 +02:00
|
|
|
desktop.ini
|
2025-09-29 09:31:37 +04:00
|
|
|
|
2025-11-03 12:30:55 +02:00
|
|
|
# Python artifacts
|
2025-09-29 09:31:37 +04:00
|
|
|
__pycache__/
|
|
|
|
|
*.py[cod]
|
|
|
|
|
*$py.class
|
|
|
|
|
*.so
|
|
|
|
|
.Python
|
|
|
|
|
build/
|
|
|
|
|
develop-eggs/
|
|
|
|
|
dist/
|
|
|
|
|
downloads/
|
|
|
|
|
eggs/
|
|
|
|
|
.eggs/
|
|
|
|
|
lib/
|
|
|
|
|
lib64/
|
|
|
|
|
parts/
|
|
|
|
|
sdist/
|
|
|
|
|
var/
|
|
|
|
|
wheels/
|
|
|
|
|
*.egg-info/
|
|
|
|
|
.installed.cfg
|
|
|
|
|
*.egg
|
2025-11-03 12:30:55 +02:00
|
|
|
|
|
|
|
|
# Virtual environments
|
|
|
|
|
venv/
|
|
|
|
|
.venv/
|
|
|
|
|
env/
|
|
|
|
|
ENV/
|
|
|
|
|
env.bak/
|
|
|
|
|
venv.bak/
|
|
|
|
|
|
|
|
|
|
# Testing
|
2025-09-29 09:31:37 +04:00
|
|
|
.pytest_cache/
|
|
|
|
|
.coverage
|
|
|
|
|
htmlcov/
|
|
|
|
|
.tox/
|
|
|
|
|
*.cover
|
|
|
|
|
.hypothesis/
|
2025-11-03 12:30:55 +02:00
|
|
|
test_*.py
|
|
|
|
|
*_test.py
|
|
|
|
|
tests/
|
2025-09-29 09:31:37 +04:00
|
|
|
|
2025-11-03 12:30:55 +02:00
|
|
|
# Database files (will be created at runtime)
|
|
|
|
|
*.db
|
|
|
|
|
*.sqlite
|
|
|
|
|
*.sqlite3
|
|
|
|
|
database/*.db
|
|
|
|
|
database/*.db-*
|
2025-09-29 09:31:37 +04:00
|
|
|
|
2025-11-03 12:30:55 +02:00
|
|
|
# Backup directories
|
|
|
|
|
workflows_backup*/
|
|
|
|
|
backup/
|
|
|
|
|
*.bak
|
|
|
|
|
*.backup
|
|
|
|
|
|
|
|
|
|
# Environment files (security)
|
|
|
|
|
.env
|
|
|
|
|
.env.*
|
|
|
|
|
!.env.example
|
2025-09-29 09:31:37 +04:00
|
|
|
|
|
|
|
|
# Logs
|
|
|
|
|
*.log
|
2025-11-03 12:30:55 +02:00
|
|
|
logs/
|
2025-09-29 09:31:37 +04:00
|
|
|
|
|
|
|
|
# Temporary files
|
|
|
|
|
tmp/
|
|
|
|
|
temp/
|
|
|
|
|
*.tmp
|
|
|
|
|
*.temp
|
2025-11-03 12:30:55 +02:00
|
|
|
.cache/
|
2025-09-29 09:31:37 +04:00
|
|
|
|
2025-11-03 12:30:55 +02:00
|
|
|
# Development files
|
|
|
|
|
DEBUG_*
|
|
|
|
|
COMPREHENSIVE_*
|
|
|
|
|
WORKFLOW_*
|
|
|
|
|
FINAL_*
|
|
|
|
|
test_*.sh
|
2025-09-29 09:31:37 +04:00
|
|
|
scripts/
|
|
|
|
|
|
2025-11-03 12:30:55 +02:00
|
|
|
# Security scan files
|
|
|
|
|
.trivyignore
|
|
|
|
|
trivy-results.sarif
|
|
|
|
|
.snyk
|
|
|
|
|
|
2025-09-29 09:31:37 +04:00
|
|
|
# CI/CD
|
|
|
|
|
.travis.yml
|
2025-11-03 12:30:55 +02:00
|
|
|
.gitlab-ci.yml
|
|
|
|
|
azure-pipelines.yml
|
2025-09-29 09:31:37 +04:00
|
|
|
|
2025-11-03 12:30:55 +02:00
|
|
|
# Docker files (if building from within container)
|
|
|
|
|
Dockerfile*
|
|
|
|
|
docker-compose*.yml
|
2025-09-29 09:31:37 +04:00
|
|
|
|
2025-11-03 12:30:55 +02:00
|
|
|
# Node (if any)
|
|
|
|
|
node_modules/
|
|
|
|
|
npm-debug.log*
|
|
|
|
|
yarn-debug.log*
|
|
|
|
|
yarn-error.log*
|