Files
ProxmoxVEDHelperScripts/json/teable.json
CanbiZ (MickLesk) 36a4635772 refactor: move config_path from root into install_methods
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.
2026-04-14 14:51:01 +02:00

45 lines
1.1 KiB
JSON

{
"name": "Teable",
"slug": "teable",
"categories": [
8
],
"date_created": "2026-03-25",
"type": "ct",
"updateable": true,
"privileged": false,
"interface_port": 3000,
"documentation": "https://help.teable.io/",
"website": "https://teable.io/",
"logo": "https://cdn.jsdelivr.net/gh/selfhst/icons@main/webp/teable.webp",
"description": "Teable is a super-fast, open-source no-code database built on PostgreSQL with a spreadsheet-like interface for building applications.",
"install_methods": [
{
"type": "default",
"script": "ct/teable.sh",
"config_path": "/opt/teable/.env",
"resources": {
"cpu": 4,
"ram": 10240,
"hdd": 25,
"os": "Debian",
"version": "13"
}
}
],
"default_credentials": {
"username": null,
"password": null
},
"notes": [
{
"text": "Minimum 10GB RAM recommended. The build process is very resource-intensive.",
"type": "warning"
},
{
"text": "Configuration is stored in `/opt/teable/.env`.",
"type": "info"
}
]
}