app-store/apps/chatgpt-ui/config.json
Nicolas Meienberger 85039f78d9
chore: small updates to categories and fields (#485)
* chore(chatpad, chatgpt): change category to ai

* chore(dailytxt): use boolean value for env variable

* chore(deluge): change download folder following trash's guide

* chore(deluge): change download folder following trash's guide

---------

Co-authored-by: DrMxrcy <58747968+DrMxrcy@users.noreply.github.com>
2023-05-08 10:19:38 -04:00

51 lines
1.3 KiB
JSON

{
"$schema": "../schema.json",
"name": "ChatGPT UI",
"port": 8200,
"available": true,
"exposable": true,
"id": "chatgpt-ui",
"tipi_version": 7,
"version": "2.5.4",
"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"
}
]
}