Solved baserow variable bugs

This commit is contained in:
Kevin Veen-Birkenbach 2025-08-12 11:23:56 +02:00
parent 140572a0a4
commit 4c7ee0441e
No known key found for this signature in database
GPG Key ID: 44D8F11FD62F878E
2 changed files with 4 additions and 4 deletions

View File

@ -16,8 +16,8 @@ docker:
image: "baserow/baserow"
version: "latest"
name: "baserow"
volumes:
data: "baserow_data"
volumes:
data: "baserow_data"
server:
domains:
canonical:

View File

@ -1,5 +1,5 @@
# Public URL
BASEROW_PUBLIC_URL=https://{{ domain }}
BASEROW_PUBLIC_URL={{ domains | get_url(application_id, WEB_PROTOCOL) }}
# Email Server Configuration
EMAIL_SMTP={{ system_email.smtp | upper }}
@ -12,7 +12,7 @@ EMAIL_SMTP_USE_TLS={{ system_email.tls | upper }}
DATABASE_USER={{ database_username }}
DATABASE_NAME={{ database_name }}
DATABASE_HOST={{ database_host }}
DATABASE_PORT={{database_port}}
DATABASE_PORT={{ database_port }}
DATABASE_PASSWORD={{ database_password }}
REDIS_URL=redis://redis:6379