Files
app-catalog-felhom.eu/templates/navidrome/.felhom.yml
T
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

74 lines
2.3 KiB
YAML

# =============================================================================
# .felhom.yml - App metadata for felhom-controller
# =============================================================================
# --- Display info (shown on dashboard) ---
display_name: "Navidrome"
description: "Könnyű zene szerver Subsonic API támogatással"
category: "media"
subdomain: "music"
slug: "navidrome"
# --- Resource hints (displayed on deploy screen) ---
resources:
mem_request: "50M"
mem_limit: "256M"
pi_compatible: true
needs_hdd: true
# --- 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: "music"
required: true
locked_after_deploy: true
description: "Az alkalmazás aldomainje"
- env_var: HDD_PATH
label: "Zenegyűjtemény útvonal"
type: path
required: true
placeholder: "/mnt/hdd_1"
description: "A külső merevlemez elérési útja, ahol a zenefájlok tárolódnak"
locked_after_deploy: true
# --- App info (info page content) ---
app_info:
tagline: "Könnyű zene szerver - streameld a saját zenegyűjteményedet"
docs_url: "https://www.navidrome.org/docs/"
use_cases:
- 'Saját zenegyűjtemény streamelése bármilyen eszközről'
- 'Subsonic API kompatibilis mobil alkalmazások használata'
- 'Lejátszási listák, kedvencek és értékelések kezelése'
- 'Automatikus metaadat és borítókép letöltés'
- 'Több felhasználó külön könyvtárral és beállításokkal'
first_steps:
- 'Nyisd meg a music.DOMAIN címet a böngészőben'
- 'Az első felhasználó automatikusan admin lesz'
- 'Hozd létre a fiókodat és várd meg az első szkennelést'
- 'Telepíts Subsonic-kompatibilis alkalmazást (pl. Subtracks, play:Sub)'
- 'Add meg a szerver címet: https://music.DOMAIN'
prerequisites:
- 'Külső HDD szükséges a zenefájlok tárolásához'
- 'Zenefájlok mappákba rendezve (pl. Előadó/Album/szám.flac)'
# --- Controller-side health probe ---
healthcheck:
checks:
- type: api
port: 4533
path: "/ping"
expect:
status: 200