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>
63 lines
2.0 KiB
YAML
63 lines
2.0 KiB
YAML
# =============================================================================
|
|
# .felhom.yml - App metadata for felhom-controller
|
|
# =============================================================================
|
|
|
|
# --- Display info (shown on dashboard) ---
|
|
display_name: "Crafty Controller"
|
|
description: "Minecraft szerver kezelő webes felülettel"
|
|
category: "games"
|
|
subdomain: "minecraft"
|
|
slug: "crafty-controller"
|
|
|
|
# --- Resource hints (displayed on deploy screen) ---
|
|
resources:
|
|
mem_request: "256M"
|
|
mem_limit: "2048M"
|
|
pi_compatible: false
|
|
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: "minecraft"
|
|
required: true
|
|
locked_after_deploy: true
|
|
description: "Az alkalmazás aldomainje"
|
|
|
|
# --- App info (info page content) ---
|
|
app_info:
|
|
tagline: "Minecraft szerver kezelő - hozd létre a saját világodat"
|
|
docs_url: "https://docs.craftycontrol.com/"
|
|
|
|
use_cases:
|
|
- 'Minecraft szerver létrehozása és kezelése webes felületen'
|
|
- 'Több szerver párhuzamos futtatása (Java és Bedrock)'
|
|
- 'Automatikus mentések és ütemezett újraindítás'
|
|
- 'Játékos menedzsment és konzol hozzáférés'
|
|
- 'Szerver fájlok kezelése böngészőből'
|
|
|
|
first_steps:
|
|
- 'Nyisd meg a minecraft.DOMAIN címet a böngészőben'
|
|
- 'Az alapértelmezett belépési adatokat a naplóban találod'
|
|
- 'Hozz létre egy új Minecraft szervert a varázslóval'
|
|
- 'Állítsd be a szerver beállításokat (játékmód, nehézség, stb.)'
|
|
- 'Csatlakozz a szerveredhez a Minecraft kliensből'
|
|
|
|
prerequisites:
|
|
- 'Legalább 2 GB szabad RAM ajánlott (Minecraft szerver + Crafty)'
|
|
- 'x86 processzor szükséges (nem fut Raspberry Pi-n)'
|
|
|
|
# --- Controller-side health probe ---
|
|
healthcheck:
|
|
checks:
|
|
- type: http
|
|
port: 8443
|