Initial layout: apps/fileshare/ (seeded from daniel/furtka apps/), CI (JSON + manifest validator + shellcheck), release pipeline (tag-driven, mirrors core repo), vendored manifest schema for offline validation. The core repo (daniel/furtka) at 26.6-alpha keeps apps/fileshare as a seed so offline first-boot still has an installable app; this catalog becomes authoritative once a box has synced at least once. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
27 lines
903 B
JSON
27 lines
903 B
JSON
{
|
|
"name": "fileshare",
|
|
"display_name": "Network Files",
|
|
"version": "0.1.1",
|
|
"description": "SMB share for Mac, Windows, Linux and Android devices on the LAN.",
|
|
"description_long": "Alle Geräte im WLAN sehen einen gemeinsamen Ordner. Funktioniert mit Windows, Mac, Linux und Android. Verbinden zu smb://furtka.local — Anmeldung mit dem hier gesetzten Benutzernamen und Passwort.",
|
|
"volumes": ["files"],
|
|
"ports": [445, 139],
|
|
"icon": "icon.svg",
|
|
"settings": [
|
|
{
|
|
"name": "SMB_USER",
|
|
"label": "Benutzername",
|
|
"description": "Der Name, mit dem sich Geräte am Share anmelden.",
|
|
"type": "text",
|
|
"default": "furtka",
|
|
"required": true
|
|
},
|
|
{
|
|
"name": "SMB_PASSWORD",
|
|
"label": "Passwort",
|
|
"description": "Mindestens 8 Zeichen. Wird nie angezeigt — auch dir nicht.",
|
|
"type": "password",
|
|
"required": true
|
|
}
|
|
]
|
|
}
|