app-store/apps/chatgpt-ui/config.json
DrMxrcy 46c0184786
Add ChatGPT UI (#339)
* Add ChatGPT UI

* Update config.json

* Update Depends On

* Change DB

* Change ENVs

* Change to MariaDB

* Fix Backend Connection

* Make Frontend Domain Exposable

* Update description.md

* Update description.md

* Update description.md
2023-04-17 02:27:01 -04:00

47 lines
1.3 KiB
JSON

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