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>
84 lines
2.2 KiB
YAML
84 lines
2.2 KiB
YAML
# =============================================================================
|
|
# .felhom.yml - App metadata for felhom-controller
|
|
# =============================================================================
|
|
|
|
# --- Display info (shown on dashboard) ---
|
|
display_name: "Outline"
|
|
description: "Modern csapat tudásbázis Markdown támogatással"
|
|
category: "productivity"
|
|
subdomain: "kb"
|
|
slug: "outline"
|
|
|
|
# --- Resource hints (displayed on deploy screen) ---
|
|
resources:
|
|
mem_request: "200M"
|
|
mem_limit: "768M"
|
|
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: "kb"
|
|
required: true
|
|
locked_after_deploy: true
|
|
description: "Az alkalmazás aldomainje"
|
|
|
|
- env_var: SECRET_KEY
|
|
label: "Titkosítási kulcs"
|
|
type: secret
|
|
generate: "hex:32"
|
|
locked_after_deploy: true
|
|
|
|
- env_var: UTILS_SECRET
|
|
label: "Segédprogram 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: "Modern tudásbázis - Markdown, valós idejű együttműködés, keresés"
|
|
docs_url: "https://docs.getoutline.com/"
|
|
|
|
use_cases:
|
|
- 'Csapat tudásbázis és dokumentáció'
|
|
- 'Markdown szerkesztő valós idejű együttműködéssel'
|
|
- 'Strukturált dokumentumok fa-szerkezetben'
|
|
- 'Teljes szöveges keresés és hivatkozások'
|
|
- 'API és integrációk (Slack, webhookok)'
|
|
|
|
first_steps:
|
|
- 'Nyisd meg a kb.DOMAIN címet a böngészőben'
|
|
- 'Hozd létre az első felhasználót'
|
|
- 'Hozz létre egy gyűjteményt (Collection) a dokumentumoknak'
|
|
- 'Kezdj el írni Markdown-ban'
|
|
- 'Hívd meg a csapattagokat'
|
|
|
|
prerequisites:
|
|
- 'x86 processzor szükséges'
|
|
- 'Legalább 1 GB szabad RAM (Outline + PostgreSQL + Redis)'
|
|
|
|
# --- Controller-side health probe ---
|
|
healthcheck:
|
|
checks:
|
|
- type: api
|
|
port: 3000
|
|
path: "/_health"
|
|
expect:
|
|
status: 200
|