mirror of
https://github.com/penpot/penpot.git
synced 2025-01-08 16:00:19 -05:00
🐛 Set the same tenant default on backend and exporter
This commit is contained in:
parent
6cdf696fc4
commit
f628955a15
2 changed files with 4 additions and 4 deletions
|
@ -61,7 +61,7 @@
|
||||||
|
|
||||||
:public-uri "http://localhost:3449"
|
:public-uri "http://localhost:3449"
|
||||||
:host "localhost"
|
:host "localhost"
|
||||||
:tenant "main"
|
:tenant "default"
|
||||||
|
|
||||||
:redis-uri "redis://redis/0"
|
:redis-uri "redis://redis/0"
|
||||||
:srepl-host "127.0.0.1"
|
:srepl-host "127.0.0.1"
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
|
|
||||||
(def defaults
|
(def defaults
|
||||||
{:public-uri "http://localhost:3449"
|
{:public-uri "http://localhost:3449"
|
||||||
:tenant "dev"
|
:tenant "default"
|
||||||
:host "devenv"
|
:host "localhost"
|
||||||
:http-server-port 6061
|
:http-server-port 6061
|
||||||
:http-server-host "localhost"
|
:http-server-host "0.0.0.0"
|
||||||
:redis-uri "redis://redis/0"})
|
:redis-uri "redis://redis/0"})
|
||||||
|
|
||||||
(s/def ::http-server-port ::us/integer)
|
(s/def ::http-server-port ::us/integer)
|
||||||
|
|
Loading…
Reference in a new issue