mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-14 17:18:33 +00:00
Fix handling of mjml port from environment
This commit is contained in:
parent
e53bc78cc0
commit
e34d6aedeb
1 changed files with 1 additions and 1 deletions
|
@ -173,7 +173,7 @@ DATABASE_ROUTERS = ('baserow.contrib.database.database_routers.TablesDatabaseRou
|
|||
|
||||
MJML_BACKEND_MODE = 'tcpserver'
|
||||
MJML_TCPSERVERS = [
|
||||
(os.getenv('MJML_SERVER_HOST', 'mjml'), os.getenv('MJML_SERVER_PORT', 28101)),
|
||||
(os.getenv('MJML_SERVER_HOST', 'mjml'), int(os.getenv('MJML_SERVER_PORT', 28101))),
|
||||
]
|
||||
|
||||
PUBLIC_BACKEND_DOMAIN = os.getenv('PUBLIC_BACKEND_DOMAIN', 'localhost:8000')
|
||||
|
|
Loading…
Add table
Reference in a new issue