0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-06 14:50:20 -05:00

🐛 Set the same tenant default on backend and exporter

This commit is contained in:
Andrey Antukh 2023-01-06 16:26:39 +01:00
parent 6cdf696fc4
commit f628955a15
2 changed files with 4 additions and 4 deletions

View file

@ -61,7 +61,7 @@
:public-uri "http://localhost:3449"
:host "localhost"
:tenant "main"
:tenant "default"
:redis-uri "redis://redis/0"
:srepl-host "127.0.0.1"

View file

@ -18,10 +18,10 @@
(def defaults
{:public-uri "http://localhost:3449"
:tenant "dev"
:host "devenv"
:tenant "default"
:host "localhost"
:http-server-port 6061
:http-server-host "localhost"
:http-server-host "0.0.0.0"
:redis-uri "redis://redis/0"})
(s/def ::http-server-port ::us/integer)