a04882e296
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>
65 lines
2.0 KiB
YAML
65 lines
2.0 KiB
YAML
# =============================================================================
|
|
# .felhom.yml — App metadata for felhom-controller
|
|
# =============================================================================
|
|
# Place alongside docker-compose.yml in each stack directory:
|
|
# /opt/docker/stacks/mealie/.felhom.yml
|
|
# =============================================================================
|
|
|
|
# --- Display info (shown on dashboard) ---
|
|
display_name: "Mealie"
|
|
description: "Receptkezelő és étkezéstervező"
|
|
category: "productivity"
|
|
subdomain: "recipes"
|
|
|
|
# --- Asset slug ---
|
|
slug: "mealie"
|
|
|
|
# --- Resource hints (displayed on deploy screen) ---
|
|
resources:
|
|
mem_request: "200M"
|
|
mem_limit: "1000M"
|
|
pi_compatible: true
|
|
needs_hdd: false
|
|
|
|
# --- Deploy fields ---
|
|
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: "recipes"
|
|
required: true
|
|
locked_after_deploy: true
|
|
description: "Az alkalmazás aldomainje"
|
|
|
|
# --- App info (info page content) ---
|
|
app_info:
|
|
tagline: 'Receptkezelő és étkezés tervező a családnak'
|
|
default_creds: 'changeme@example.com / MyPassword'
|
|
docs_url: 'https://docs.mealie.io/'
|
|
|
|
use_cases:
|
|
- 'Receptek gyűjtése és rendszerezése kategóriák és címkék szerint'
|
|
- 'Receptek importálása weboldalakról automatikusan'
|
|
- 'Heti étkezés tervezés és bevásárlólista generálás'
|
|
- 'Receptek megosztása családtagokkal és barátokkal'
|
|
- 'Többnyelvű felület - magyar is elérhető'
|
|
|
|
first_steps:
|
|
- 'Nyisd meg a mealie.DOMAIN címet a böngészőben'
|
|
- 'Jelentkezz be: changeme@example.com / MyPassword'
|
|
- 'Változtasd meg azonnal az email címet és jelszót'
|
|
- 'Importáld az első receptet egy weboldal URL beillesztésével'
|
|
- 'Próbáld ki az étkezés tervezőt'
|
|
|
|
# --- Controller-side health probe ---
|
|
healthcheck:
|
|
checks:
|
|
- type: tcp
|
|
port: 9000
|