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.
36 lines
939 B
JSON
36 lines
939 B
JSON
{
|
|
"name": "RSS-Bridge",
|
|
"slug": "rss-bridge",
|
|
"categories": [
|
|
0
|
|
],
|
|
"date_created": "2026-07-13",
|
|
"type": "ct",
|
|
"updateable": true,
|
|
"privileged": false,
|
|
"interface_port": 80,
|
|
"documentation": "https://rss-bridge.github.io/rss-bridge/",
|
|
"website": "https://rss-bridge.org/",
|
|
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/rss-bridge.webp",
|
|
"description": "RSS-Bridge is a PHP web application that generates web feeds for websites that don't have one, supporting over 400 bridges for various platforms and services.",
|
|
"install_methods": [
|
|
{
|
|
"type": "default",
|
|
"script": "ct/rss-bridge.sh",
|
|
"config_path": "/opt/rss-bridge/config.ini.php",
|
|
"resources": {
|
|
"cpu": 1,
|
|
"ram": 512,
|
|
"hdd": 2,
|
|
"os": "Debian",
|
|
"version": "13"
|
|
}
|
|
}
|
|
],
|
|
"default_credentials": {
|
|
"username": null,
|
|
"password": null
|
|
},
|
|
"notes": []
|
|
}
|