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
806 B
JSON
36 lines
806 B
JSON
{
|
|
"name": "Mini QR",
|
|
"slug": "mini-qr",
|
|
"categories": [
|
|
0
|
|
],
|
|
"date_created": "2026-04-13",
|
|
"type": "ct",
|
|
"updateable": true,
|
|
"privileged": false,
|
|
"interface_port": 80,
|
|
"documentation": "https://github.com/lyqht/mini-qr",
|
|
"website": "https://mini-qr-code-generator.vercel.app/",
|
|
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/mini-qr.webp",
|
|
"description": "Create & scan cute qr codes easily.",
|
|
"install_methods": [
|
|
{
|
|
"type": "default",
|
|
"script": "ct/mini-qr.sh",
|
|
"config_path": "/etc/caddy/Caddyfile",
|
|
"resources": {
|
|
"cpu": 2,
|
|
"ram": 2048,
|
|
"hdd": 6,
|
|
"os": "Debian",
|
|
"version": "13"
|
|
}
|
|
}
|
|
],
|
|
"default_credentials": {
|
|
"username": null,
|
|
"password": null
|
|
},
|
|
"notes": []
|
|
}
|