Update mini-qr manifest schema and metadata

Migrate manifest to the updated schema and enrich metadata: rename install_methods_json->install_methods and notes_json->notes, add categories, date_created, updateable, interface_port and default_credentials fields. Adjust description text (remove emoji) and set the install script path (ct/mini-qr.sh). These changes prepare the Mini QR package for the newer CT manifest format and include basic deployment metadata.
This commit is contained in:
CanbiZ (MickLesk)
2026-04-13 12:09:51 +02:00
parent 951441cf03
commit 738779b047

View File

@@ -1,16 +1,23 @@
{ {
"name": "Mini QR", "name": "Mini QR",
"slug": "mini-qr", "slug": "mini-qr",
"description": "Create & scan cute qr codes easily 👾", "categories": [
0
],
"date_created": "2026-04-13",
"type": "ct", "type": "ct",
"updateable": true,
"privileged": false, "privileged": false,
"interface_port": 80,
"documentation": "https://github.com/lyqht/mini-qr", "documentation": "https://github.com/lyqht/mini-qr",
"website": "https://mini-qr-code-generator.vercel.app/", "website": "https://mini-qr-code-generator.vercel.app/",
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/mini-qr.webp", "logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/mini-qr.webp",
"config_path": "/etc/caddy/Caddyfile", "config_path": "/etc/caddy/Caddyfile",
"install_methods_json": [ "description": "Create & scan cute qr codes easily.",
"install_methods": [
{ {
"type": "default", "type": "default",
"script": "ct/mini-qr.sh",
"resources": { "resources": {
"cpu": 2, "cpu": 2,
"ram": 2048, "ram": 2048,
@@ -20,5 +27,9 @@
} }
} }
], ],
"notes_json": [] "default_credentials": {
} "username": null,
"password": null
},
"notes": []
}