All checks were successful
Build Container / build (push) Successful in 1m18s
- Flask backend with SSH discovery and Claude AI integration - React/Vite frontend with Tailwind CSS - Docker multi-stage build - Gitea Actions workflow for container builds 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
24 lines
605 B
Plaintext
24 lines
605 B
Plaintext
# Kuma Strapper Environment Variables
|
|
|
|
# Required: Base64-encoded SSH private key
|
|
# To encode your key: base64 -w 0 ~/.ssh/id_rsa
|
|
SSH_PRIVATE_KEY=
|
|
|
|
# Required: Uptime Kuma instance URL
|
|
UPTIME_KUMA_URL=http://localhost:3001
|
|
|
|
# Required: Uptime Kuma API token
|
|
# Get this from Uptime Kuma Settings > API Keys
|
|
UPTIME_KUMA_API_KEY=
|
|
|
|
# Required: Claude/Anthropic API key
|
|
# Get this from https://console.anthropic.com/
|
|
CLAUDE_API_KEY=
|
|
|
|
# Optional: Enable dev mode on startup
|
|
# When enabled, Claude-suggested SSH commands require approval
|
|
DEV_MODE=false
|
|
|
|
# Optional: Enable debug mode for development
|
|
DEBUG=false
|