Migrated all 80 app JSON files to place config_path inside each install_methods object instead of at the root level. This allows different install methods (e.g. Debian vs Alpine) to have distinct config paths. Also updated AGENTS.md JSON structure example to reflect the change.
41 lines
921 B
JSON
41 lines
921 B
JSON
{
|
|
"name": "Invidious",
|
|
"slug": "invidious",
|
|
"categories": [
|
|
13
|
|
],
|
|
"date_created": "2026-03-09",
|
|
"type": "ct",
|
|
"updateable": true,
|
|
"privileged": false,
|
|
"interface_port": 3000,
|
|
"documentation": "https:/docs.invidious.io",
|
|
"website": "https://invidious.io",
|
|
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/invidious.webp",
|
|
"description": "A self-hosted alternative frontend for YouTube",
|
|
"install_methods": [
|
|
{
|
|
"type": "default",
|
|
"script": "ct/invidious.sh",
|
|
"config_path": "/opt/invidious/config",
|
|
"resources": {
|
|
"cpu": 2,
|
|
"ram": 2048,
|
|
"hdd": 4,
|
|
"os": "Debian",
|
|
"version": "13"
|
|
}
|
|
}
|
|
],
|
|
"default_credentials": {
|
|
"username": null,
|
|
"password": null
|
|
},
|
|
"notes": [
|
|
{
|
|
"text": "Invidious Companion comes pre-installed and is running on port 8082.",
|
|
"type": "info"
|
|
}
|
|
]
|
|
}
|