0a36a57901
Dev convenience so you can author playbooks on the host and have Steward's local-source discovery pick them up. ./ansible-dev/ is gitignored (operator content); a safe demo playbook lives there locally. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
60 lines
867 B
Plaintext
60 lines
867 B
Plaintext
# Planning files
|
|
docs/superpowers/
|
|
|
|
# First-party plugins are tracked in-tree under plugins/ and ship in the image.
|
|
# Third-party plugins are mounted at runtime into the external dir
|
|
# (STEWARD_PLUGIN_DIR, default /data/plugins) and are not tracked here.
|
|
/plugins/**/*.zip
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
*.egg
|
|
.eggs/
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
|
|
# Secrets / local config (use config.example.yaml as template)
|
|
.env
|
|
*.env.local
|
|
config.yaml
|
|
|
|
# Database
|
|
*.db
|
|
*.sqlite3
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Editor
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Playbook cache (runtime data)
|
|
playbook_cache/
|
|
|
|
# Superpowers brainstorm scratch (visual companion mockups, state)
|
|
.superpowers/
|
|
|
|
# Local dev Ansible playbooks (operator content, mounted into the container)
|
|
/ansible-dev/
|