fix: format json with 2-space indentation and update resource defaults

This commit is contained in:
Michael Joshua Saul
2026-03-08 15:00:16 -06:00
parent 100af0487e
commit 6c2df5a74f

View File

@@ -1,52 +1,52 @@
{ {
"name": "Plane", "name": "Plane",
"slug": "plane", "slug": "plane",
"categories": [ "categories": [
25 25
], ],
"date_created": "2026-02-25", "date_created": "2026-02-25",
"type": "ct", "type": "ct",
"updateable": true, "updateable": true,
"privileged": false, "privileged": false,
"interface_port": 80, "interface_port": 80,
"documentation": "https://developers.plane.so/self-hosting/overview", "documentation": "https://developers.plane.so/self-hosting/overview",
"website": "https://plane.so", "website": "https://plane.so",
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/plane.webp", "logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/plane.webp",
"config_path": "/opt/plane/apps/api/.env", "config_path": "/opt/plane/apps/api/.env",
"description": "Open-source project tracking tool that helps teams plan, track, and manage their software projects with issues, cycles, and modules.", "description": "Open-source project tracking tool that helps teams plan, track, and manage their software projects with issues, cycles, and modules.",
"install_methods": [ "install_methods": [
{ {
"type": "default", "type": "default",
"script": "ct/plane.sh", "script": "ct/plane.sh",
"resources": { "resources": {
"cpu": 4, "cpu": 2,
"ram": 8192, "ram": 4096,
"hdd": 30, "hdd": 30,
"os": "Debian", "os": "Debian",
"version": "13" "version": "13"
} }
} }
], ],
"default_credentials": { "default_credentials": {
"username": null, "username": null,
"password": null "password": null
},
"notes": [
{
"text": "First user to sign up becomes the instance admin. Initial build takes 10-15 minutes.",
"type": "info"
}, },
"notes": [ {
{ "text": "Admin panel (God Mode) is available at `/god-mode/` for instance configuration.",
"text": "First user to sign up becomes the instance admin. Initial build takes 10-15 minutes.", "type": "info"
"type": "info" },
}, {
{ "text": "Credentials are saved to `~/plane.creds`.",
"text": "Admin panel (God Mode) is available at `/god-mode/` for instance configuration.", "type": "info"
"type": "info" },
}, {
{ "text": "If the container IP changes, rebuild the frontend apps or run the update script to apply the new URL.",
"text": "Credentials are saved to `~/plane.creds`.", "type": "warning"
"type": "info" }
}, ]
{
"text": "If the container IP changes, rebuild the frontend apps or run the update script to apply the new URL.",
"type": "warning"
}
]
} }