- Add ULTIMATE-Telegram-CMS-COMPLETE.json with all commands - Add Docker Event workflows with Gitea integration - Add comprehensive deployment guide for fresh installs - Add quick reference and testing checklist - Include all n8n workflow exports Commands: /start, /list, /search, /stats, /preview, /publish, /delete, .review Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
36 lines
1.1 KiB
PowerShell
36 lines
1.1 KiB
PowerShell
# Test 1: Eigenes Projekt (sollte hohen Coolness Score bekommen)
|
|
curl -X POST https://n8n.dk0.dev/webhook/docker-event `
|
|
-H "Content-Type: application/json" `
|
|
-d '{
|
|
"container": "portfolio-dev",
|
|
"image": "denshooter/portfolio:latest",
|
|
"timestamp": "2026-04-01T23:18:00Z"
|
|
}'
|
|
|
|
# Test 2: Bekanntes Self-Hosted Tool (mittlerer Score)
|
|
curl -X POST https://n8n.dk0.dev/webhook/docker-event `
|
|
-H "Content-Type: application/json" `
|
|
-d '{
|
|
"container": "plausible-analytics",
|
|
"image": "plausible/analytics:latest",
|
|
"timestamp": "2026-04-01T23:18:00Z"
|
|
}'
|
|
|
|
# Test 3: CI/CD Runner (sollte ignoriert werden)
|
|
curl -X POST https://n8n.dk0.dev/webhook/docker-event `
|
|
-H "Content-Type: application/json" `
|
|
-d '{
|
|
"container": "gitea-actions-task-351-workflow-ci-cd-job-test-build",
|
|
"image": "catthehacker/ubuntu:act-latest",
|
|
"timestamp": "2026-04-01T23:18:00Z"
|
|
}'
|
|
|
|
# Test 4: Spannendes Sicherheitstool (hoher Score)
|
|
curl -X POST https://n8n.dk0.dev/webhook/docker-event `
|
|
-H "Content-Type: application/json" `
|
|
-d '{
|
|
"container": "suricata-ids",
|
|
"image": "jasonish/suricata:latest",
|
|
"timestamp": "2026-04-01T23:18:00Z"
|
|
}'
|