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.
37 lines
936 B
JSON
37 lines
936 B
JSON
{
|
|
"name": "OxiCloud",
|
|
"slug": "oxicloud",
|
|
"categories": [
|
|
11,
|
|
12
|
|
],
|
|
"date_created": "2026-03-09",
|
|
"type": "ct",
|
|
"updateable": true,
|
|
"privileged": false,
|
|
"interface_port": 8086,
|
|
"documentation": "https://github.com/DioCrafts/OxiCloud/tree/main/doc",
|
|
"website": "https://github.com/DioCrafts/OxiCloud",
|
|
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/oxicloud.webp",
|
|
"description": "Ultra-fast, secure & lightweight self-hosted cloud storage — your files, photos, calendars & contacts, all in one place. Built in Rust.",
|
|
"install_methods": [
|
|
{
|
|
"type": "default",
|
|
"script": "ct/oxicloud.sh",
|
|
"config_path": "/etc/oxicloud/.env",
|
|
"resources": {
|
|
"cpu": 2,
|
|
"ram": 3072,
|
|
"hdd": 20,
|
|
"os": "Debian",
|
|
"version": "13"
|
|
}
|
|
}
|
|
],
|
|
"default_credentials": {
|
|
"username": null,
|
|
"password": null
|
|
},
|
|
"notes": []
|
|
}
|