diff --git a/apps/chatpad/config.json b/apps/chatpad/config.json new file mode 100644 index 00000000..9c7013e6 --- /dev/null +++ b/apps/chatpad/config.json @@ -0,0 +1,17 @@ +{ + "$schema": "../schema.json", + "name": "Chatpad.ai", + "available": true, + "exposable": true, + "port": 8179, + "id": "chatpad", + "tipi_version": 1, + "version": "latest", + "categories": ["utilities"], + "description": "Not just another ChatGPT user-interface!", + "short_desc": "Not just another ChatGPT user-interface!", + "author": "Andrei Canta", + "source": "https://github.com/deiucanta/chatpad", + "website": "https://chatpad.ai/", + "form_fields": [] +} diff --git a/apps/chatpad/docker-compose.yml b/apps/chatpad/docker-compose.yml new file mode 100644 index 00000000..e991d755 --- /dev/null +++ b/apps/chatpad/docker-compose.yml @@ -0,0 +1,17 @@ +version: '3.7' +services: + chatpad: + image: ghcr.io/deiucanta/chatpad:latest + container_name: chatpad + ports: + - ${APP_PORT}:80 + restart: unless-stopped + networks: + - tipi_main_network + labels: + traefik.enable: ${APP_EXPOSED} + traefik.http.routers.chatpad.rule: Host(`${APP_DOMAIN}`) + traefik.http.routers.chatpad.entrypoints: websecure + traefik.http.routers.chatpad.service: chatpad + traefik.http.routers.chatpad.tls.certresolver: myresolver + traefik.http.services.chatpad.loadbalancer.server.port: 80 diff --git a/apps/chatpad/metadata/description.md b/apps/chatpad/metadata/description.md new file mode 100644 index 00000000..8d35b5ea --- /dev/null +++ b/apps/chatpad/metadata/description.md @@ -0,0 +1,17 @@ +![Chatpad AI](https://raw.githubusercontent.com/deiucanta/chatpad/main/banner.png) + +## Premium quality UI for ChatGPT + +Recently, there has been a surge of UIs for ChatGPT, making it the new "to-do app" that everyone wants to try their hand at. Chatpad sets itself apart with a broader vision - to become the ultimate interface for ChatGPT users. + +### ⚡️ Free and open source + +This app is provided for free and the source code is available on GitHub. + +### 🔒 Privacy focused + +No tracking, no cookies, no bullshit. All your data is stored locally. + +### ✨ Best experience + +Crafted with love and care to provide the best experience possible. diff --git a/apps/chatpad/metadata/logo.jpg b/apps/chatpad/metadata/logo.jpg new file mode 100644 index 00000000..105e0378 Binary files /dev/null and b/apps/chatpad/metadata/logo.jpg differ