Files
admin a04882e296 feat: add controller-side healthcheck configs to all 52 apps
Each app template now declares a healthcheck: section in .felhom.yml
with appropriate probe type (http, api, or tcp) and endpoint based on
the app's known health endpoints. The controller uses these to verify
services are actually responding, not just that containers are running.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-25 11:11:27 +01:00

71 lines
1.9 KiB
YAML

# =============================================================================
# .felhom.yml - App metadata for felhom-controller
# =============================================================================
# --- Display info (shown on dashboard) ---
display_name: "Claper"
description: "Interaktív prezentáció és közönség bevonás"
category: "productivity"
subdomain: "present"
slug: "claper"
# --- Resource hints (displayed on deploy screen) ---
resources:
mem_request: "100M"
mem_limit: "384M"
pi_compatible: true
needs_hdd: false
# --- Deploy fields (first deployment only) ---
deploy_fields:
- env_var: DOMAIN
label: "Domain"
type: domain
description: "A szerver domain neve"
locked_after_deploy: true
- env_var: SUBDOMAIN
label: "Aldomain"
type: subdomain
default: "present"
required: true
locked_after_deploy: true
description: "Az alkalmazás aldomainje"
- env_var: SECRET_KEY_BASE
label: "Titkosítási kulcs"
type: secret
generate: "hex:32"
locked_after_deploy: true
- env_var: DB_PASSWORD
label: "Adatbázis jelszó"
type: secret
generate: "password:24"
locked_after_deploy: true
# --- App info (info page content) ---
app_info:
tagline: "Interaktív prezentáció - szavazás, kérdések és reakciók élőben"
docs_url: "https://docs.claper.co/"
use_cases:
- 'Interaktív prezentációk élő szavazásokkal'
- 'Közönség kérdéseinek gyűjtése és megjelenítése'
- 'Reakciók és visszajelzések valós időben'
- 'PDF prezentációk feltöltése és megosztása'
- 'QR kód a közönség gyors csatlakozásához'
first_steps:
- 'Nyisd meg a present.DOMAIN címet a böngészőben'
- 'Hozd létre a fiókodat'
- 'Tölts fel egy PDF prezentációt'
- 'Oszd meg a kódot a közönséggel'
# --- Controller-side health probe ---
healthcheck:
checks:
- type: http
port: 4000