5 lines
180 B
Bash
Executable File
5 lines
180 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# n8n helper - source secrets and call API
|
|
source ~/.clawdbot/secrets/n8n.env
|
|
curl -s -H "X-N8N-API-KEY: $N8N_API_KEY" -H "Content-Type: application/json" "$@"
|