fix(taeble): version and env variables

This commit is contained in:
Andrey Kucherenko
2024-08-01 19:27:07 +03:00
parent dc626f1a94
commit 06355ff089
3 changed files with 3 additions and 3 deletions

View File

@@ -2,7 +2,7 @@ version: '3.9'
services: services:
teable: teable:
image: ghcr.io/teableio/teable:1.2.0-beta image: ghcr.io/teableio/teable:1.3.1-alpha-build.460
restart: always restart: always
ports: ports:
- ${TEABLE_PORT} - ${TEABLE_PORT}

View File

@@ -22,7 +22,7 @@ export function generate(schema: Schema): Template {
"POSTGRES_USER=teable", "POSTGRES_USER=teable",
`POSTGRES_PASSWORD=${password}`, `POSTGRES_PASSWORD=${password}`,
"# App", "# App",
"PUBLIC_ORIGIN=https://${TABLE_HOST}", "PUBLIC_ORIGIN=https://${TAEBLE_HOST}",
"PRISMA_DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_DB}", "PRISMA_DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_DB}",
"PUBLIC_DATABASE_PROXY=127.0.0.1:42345", "PUBLIC_DATABASE_PROXY=127.0.0.1:42345",
"# Need to support sending emails to enable the following configurations", "# Need to support sending emails to enable the following configurations",

View File

@@ -396,7 +396,7 @@ export const templates: TemplateData[] = [
{ {
id: "teable", id: "teable",
name: "teable", name: "teable",
version: "v1.2.0-beta", version: "v1.3.1-alpha-build.460",
description: description:
"Teable is a Super fast, Real-time, Professional, Developer friendly, No-code database built on Postgres. It uses a simple, spreadsheet-like interface to create complex enterprise-level database applications. Unlock efficient app development with no-code, free from the hurdles of data security and scalability.", "Teable is a Super fast, Real-time, Professional, Developer friendly, No-code database built on Postgres. It uses a simple, spreadsheet-like interface to create complex enterprise-level database applications. Unlock efficient app development with no-code, free from the hurdles of data security and scalability.",
logo: "teable.png", logo: "teable.png",