d713238b5c
* feat(actual-budget): change config to support local domain * feat(adguard): change config to support local domain * feat(autobrr): change config to support local domain * feat(barrage): change config to support local domain * feat(bazarr): change config to support local domain * feat(booksonic): change config to support local domain * feat(bookstack): change config to support local domain * feat(calibre-web): change config to support local domain * feat(chatgpt-ui): change config to support local domain * feat(chatpad): change config to support local domain * feat(code-server): change config to support local domain * feat(codex-docs): change config to support local domain * feat(dailytxt): change config to support local domain * feat(dashdot): change config to support local domain * feat(deemix): change config to support local domain * feat(deluge): change config to support local domain * feat(dokuwiki): change config to support local domain * feat(dozzle): change config to support local domain * feat(duplicati): change config to support local domain * feat(emulatorjs): change config to support local domain * feat(excalidraw): change config to support local domain * feat(filebrowser): change config to support local domain * feat(filestash): change config to support local domain * feat(firefly-iii): change config to support local domain * feat(fireshare): change config to support local domain * feat(flatnotes): change config to support local domain * feat(freshrss): change config to support local domain * feat(ghost): change config to support local domain * feat(gitea): change config to support local domain * feat(gotify): change config to support local domain * feat(gotosocial): change config to support local domain * feat(grafana): change config to support local domain * feat(grav): change config to support local domain * feat(grocy): change config to support local domain
47 lines
1.3 KiB
JSON
47 lines
1.3 KiB
JSON
{
|
|
"$schema": "../schema.json",
|
|
"name": "ChatGPT UI",
|
|
"port": 8200,
|
|
"available": true,
|
|
"exposable": true,
|
|
"id": "chatgpt-ui",
|
|
"tipi_version": 9,
|
|
"version": "2.5.5",
|
|
"categories": ["ai"],
|
|
"description": "A ChatGPT web client that supports multiple users, multiple languages, and multiple database connections for persistent data storage",
|
|
"short_desc": "A ChatGPT web client that supports multiple users, multiple languages, and multiple database connections for persistent data storage",
|
|
"author": "https://github.com/WongSaang",
|
|
"source": "https://github.com/WongSaang/chatgpt-ui",
|
|
"supported_architectures": ["amd64"],
|
|
"form_fields": [
|
|
{
|
|
"type": "random",
|
|
"label": "CHATGPT_UI_DB_PASSWORD",
|
|
"min": 32,
|
|
"env_variable": "CHATGPT_UI_DB_PASSWORD"
|
|
},
|
|
{
|
|
"type": "text",
|
|
"label": "Superuser Username",
|
|
"max": 50,
|
|
"min": 3,
|
|
"required": true,
|
|
"env_variable": "CHATGPT_UI_SUPERUSER_USERNAME"
|
|
},
|
|
{
|
|
"type": "password",
|
|
"label": "Superuser Password",
|
|
"max": 50,
|
|
"min": 3,
|
|
"required": true,
|
|
"env_variable": "CHATGPT_UI_SUPERUSER_PASSWORD"
|
|
},
|
|
{
|
|
"type": "text",
|
|
"label": "Superuser Email",
|
|
"required": true,
|
|
"env_variable": "CHATGPT_UI_SUPERUSER_EMAIL"
|
|
}
|
|
]
|
|
}
|