refactor: move config_path from root into install_methods

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.
This commit is contained in:
CanbiZ (MickLesk)
2026-04-14 14:51:01 +02:00
parent 935f9d9d3d
commit 36a4635772
81 changed files with 2621 additions and 2611 deletions

View File

@@ -1,40 +1,40 @@
{
"name": "Certimate",
"slug": "certimate",
"categories": [
6
],
"date_created": "2026-07-13",
"type": "ct",
"updateable": true,
"privileged": false,
"interface_port": 8090,
"documentation": "https://docs.certimate.me/",
"website": "https://certimate.me/",
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/certimate.webp",
"config_path": "",
"description": "Certimate is an open-source SSL certificate management tool that automates the application, deployment, and renewal of SSL certificates, supporting integration with various cloud providers and deployment targets.",
"install_methods": [
{
"type": "default",
"script": "ct/certimate.sh",
"resources": {
"cpu": 1,
"ram": 256,
"hdd": 2,
"os": "Debian",
"version": "13"
}
}
],
"default_credentials": {
"username": "admin@certimate.fun",
"password": "1234567890"
},
"notes": [
{
"text": "Change the default password after first login!",
"type": "warning"
}
]
}
"name": "Certimate",
"slug": "certimate",
"categories": [
6
],
"date_created": "2026-07-13",
"type": "ct",
"updateable": true,
"privileged": false,
"interface_port": 8090,
"documentation": "https://docs.certimate.me/",
"website": "https://certimate.me/",
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/certimate.webp",
"description": "Certimate is an open-source SSL certificate management tool that automates the application, deployment, and renewal of SSL certificates, supporting integration with various cloud providers and deployment targets.",
"install_methods": [
{
"type": "default",
"script": "ct/certimate.sh",
"config_path": "",
"resources": {
"cpu": 1,
"ram": 256,
"hdd": 2,
"os": "Debian",
"version": "13"
}
}
],
"default_credentials": {
"username": "admin@certimate.fun",
"password": "1234567890"
},
"notes": [
{
"text": "Change the default password after first login!",
"type": "warning"
}
]
}