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
867 B
JSON
36 lines
867 B
JSON
{
|
|
"name": "Dashy",
|
|
"slug": "dashy",
|
|
"categories": [
|
|
10
|
|
],
|
|
"date_created": "2026-03-30",
|
|
"type": "ct",
|
|
"updateable": true,
|
|
"privileged": false,
|
|
"interface_port": 4000,
|
|
"documentation": "https://dashy.to/docs",
|
|
"website": "https://dashy.to/",
|
|
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/dashy.webp",
|
|
"description": "Dashy is a solution that helps you organize your self-hosted services by centralizing access to them through a single interface.",
|
|
"install_methods": [
|
|
{
|
|
"type": "default",
|
|
"script": "ct/dashy.sh",
|
|
"config_path": "/opt/dashy/user-data/conf.yml",
|
|
"resources": {
|
|
"cpu": 2,
|
|
"ram": 2048,
|
|
"hdd": 6,
|
|
"os": "debian",
|
|
"version": "13"
|
|
}
|
|
}
|
|
],
|
|
"default_credentials": {
|
|
"username": null,
|
|
"password": null
|
|
},
|
|
"notes": []
|
|
}
|