mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-02-05 12:53:27 +01:00
Refreshed AI.md with new reference scripts, expanded checklist, and improved AI assistant tips. Updated container and install script templates for modern defaults (Debian 13, larger disk, two tags), clarified helper function usage, and improved update/backup patterns. Enhanced JSON template with realistic metadata, new fields, and example notes.
41 lines
901 B
JSON
Generated
41 lines
901 B
JSON
Generated
{
|
|
"name": "AppName",
|
|
"slug": "appname",
|
|
"categories": [
|
|
0
|
|
],
|
|
"date_created": "2026-01-18",
|
|
"type": "ct",
|
|
"updateable": true,
|
|
"privileged": false,
|
|
"interface_port": 3000,
|
|
"documentation": "https://docs.example.com/",
|
|
"website": "https://example.com/",
|
|
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/appname.webp",
|
|
"config_path": "/opt/appname/.env",
|
|
"description": "Short description of what AppName does and its main features.",
|
|
"install_methods": [
|
|
{
|
|
"type": "default",
|
|
"script": "ct/appname.sh",
|
|
"resources": {
|
|
"cpu": 2,
|
|
"ram": 2048,
|
|
"hdd": 8,
|
|
"os": "Debian",
|
|
"version": "13"
|
|
}
|
|
}
|
|
],
|
|
"default_credentials": {
|
|
"username": null,
|
|
"password": null
|
|
},
|
|
"notes": [
|
|
{
|
|
"text": "Change the default password after first login!",
|
|
"type": "warning"
|
|
}
|
|
]
|
|
}
|