HH/.gitignore
ismail 946c31cf34
Some checks failed
Build and Push Docker Image / build (push) Failing after 21s
Add CI pipeline for Docker image builds
2026-04-19 13:34:40 +03:00

102 lines
1014 B
Plaintext

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
env/
venv/
.venv/
ENV/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# Django
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal
media/
staticfiles/
logs/
# Environment variables
.env
.env.local
.env.staging
.env.production
# IDE
.idea/
.vscode/
*.swp
*.swo
*~
.DS_Store
# Testing
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.tox/
.hypothesis/
# Celery
celerybeat-schedule
celerybeat.pid
# Backup files
*.bak
*.backup
# OS
Thumbs.db
.DS_Store
# Docker volumes
postgres_data/
# Django migrations (exclude __init__.py)
**/migrations/*.py
!**/migrations/__init__.py
# OpenCode skills
.opencode/skills/
# LibreOffice recalc scripts
scripts/office/
scripts/recalc.py
Documents
# AI tool caches
.qwen/
# Database exports
database_export/
# Ruff cache
.ruff_cache/
# Lock files
*.tar.gz
dump.rdb
.~lock.*
node_modules