50 lines
560 B
Plaintext
50 lines
560 B
Plaintext
# Version control
|
|
.git/
|
|
.gitignore
|
|
|
|
# Docs and planning
|
|
docs/
|
|
README*
|
|
*.md
|
|
|
|
# Tests
|
|
tests/
|
|
|
|
# Dev tooling
|
|
.venv/
|
|
venv/
|
|
env/
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Secrets / local config (mounted at runtime via volume)
|
|
.env
|
|
*.env.local
|
|
config.yaml
|
|
|
|
# Runtime data (mounted at runtime via volume)
|
|
playbook_cache/
|
|
|
|
# Plugins (mounted at runtime via volume)
|
|
plugins/
|
|
|
|
# Deployment files not needed in image
|
|
docker-compose.yml
|
|
systemd/
|
|
|
|
# Editor / OS
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Python artifacts
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.egg-info/
|
|
dist/
|
|
build/
|