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>
83 lines
2.5 KiB
YAML
83 lines
2.5 KiB
YAML
# =============================================================================
|
|
# .felhom.yml - App metadata for felhom-controller
|
|
# =============================================================================
|
|
|
|
# --- Display info (shown on dashboard) ---
|
|
display_name: "Plex"
|
|
description: "Népszerű média szerver csiszolt felülettel"
|
|
category: "media"
|
|
subdomain: "plex"
|
|
slug: "plex"
|
|
|
|
# --- Resource hints (displayed on deploy screen) ---
|
|
resources:
|
|
mem_request: "512M"
|
|
mem_limit: "2048M"
|
|
pi_compatible: false
|
|
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: "plex"
|
|
required: true
|
|
locked_after_deploy: true
|
|
description: "Az alkalmazás aldomainje"
|
|
|
|
- env_var: PLEX_CLAIM
|
|
label: "Plex Claim Token"
|
|
type: text
|
|
required: true
|
|
placeholder: "claim-xxxxxxxxxxxx"
|
|
description: "Generáld a https://plex.tv/claim oldalon (4 percig érvényes)"
|
|
locked_after_deploy: true
|
|
|
|
- env_var: HDD_PATH
|
|
label: "Médiatár útvonal"
|
|
type: path
|
|
required: true
|
|
placeholder: "/mnt/hdd_1"
|
|
description: "A külső merevlemez elérési útja"
|
|
locked_after_deploy: true
|
|
|
|
# --- App info (info page content) ---
|
|
app_info:
|
|
tagline: "Prémium média szerver kiváló alkalmazás támogatással"
|
|
docs_url: "https://support.plex.tv/"
|
|
|
|
use_cases:
|
|
- 'Filmek, sorozatok és zene streamelése professzionális felületen'
|
|
- 'Automatikus transzkódolás bármilyen eszközhöz'
|
|
- 'Watch Together - közös filmnézés távolról'
|
|
- 'Intro/outro skip funkció (Plex Pass)'
|
|
- 'Gazdag mobilalkalmazás és Smart TV támogatás'
|
|
|
|
first_steps:
|
|
- 'Generálj egy claim tokent a https://plex.tv/claim oldalon'
|
|
- 'Telepítés után nyisd meg a plex.DOMAIN címet'
|
|
- 'Kapcsold össze a Plex fiókoddat a szerverrel'
|
|
- 'Add hozzá a médiatárat (filmek: /media/movies, sorozatok: /media/shows)'
|
|
- 'Telepítsd a Plex alkalmazást eszközeidre'
|
|
|
|
prerequisites:
|
|
- 'Plex fiók szükséges (ingyenes regisztráció a plex.tv-n)'
|
|
- 'Külső HDD a médiafájlok tárolásához'
|
|
- 'Legalább 2 GB szabad RAM (transzkódoláshoz több ajánlott)'
|
|
|
|
# --- Controller-side health probe ---
|
|
healthcheck:
|
|
checks:
|
|
- type: api
|
|
port: 32400
|
|
path: "/identity"
|
|
expect:
|
|
status: 200
|