- Added Host column (Abiba: 192.168.68.24, Hermes agents: 192.168.68.123) - Changed Health Port → Health URL with full http://host:port/health URLs - Updated Check 1 to reference {{health_url}} instead of {{health_port}} - Added .gitignore for .agents/ (OpenProse run state)
38 lines
393 B
Plaintext
38 lines
393 B
Plaintext
# Config files with secrets — NEVER commit
|
|
config.yaml
|
|
*.local.yaml
|
|
|
|
# Dependencies
|
|
node_modules/
|
|
__pycache__/
|
|
*.pyc
|
|
.venv/
|
|
venv/
|
|
|
|
# Build outputs
|
|
dist/
|
|
*.tsbuildinfo
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
deploy.log
|
|
|
|
# Gitea runner
|
|
.act_runner/
|
|
.cache/act/
|
|
|
|
# Git hooks (installed locally)
|
|
.githooks/
|
|
|
|
# PM2 ecosystem (local configs)
|
|
ecosystem.*.config.cjs
|
|
.agents/
|