Wargame_campaign_app/.gitignore
2025-12-19 09:56:45 +01:00

60 lines
866 B
Text

# =========================
# Python bytecode & cache
# =========================
__pycache__/
*.py[cod]
*$py.class
# =========================
# Virtual environments
# =========================
.env
.venv
env/
venv/
ENV/
# =========================
# Packaging / build
# =========================
build/
dist/
*.egg-info/
.eggs/
# =========================
# Test & coverage
# =========================
.pytest_cache/
.coverage
htmlcov/
.tox/
.nox/
# =========================
# IDE / editors
# =========================
.vscode/
.idea/
*.swp
*.swo
# =========================
# OS generated files
# =========================
.DS_Store
Thumbs.db
# =========================
# Logs
# =========================
*.log
# =========================
# Application data
# =========================
data/*.json
data/*.bak
# But keep example files
!data/example.json