24 lines
931 B
Clojure
24 lines
931 B
Clojure
{:server {:host "0.0.0.0" :port 3001}
|
|
:db {:host "localhost" :port 5432 :dbname "ajet_chat"
|
|
:user "ajet" :password "ajet_dev" :pool-size 10
|
|
:migrations {:enabled true :location "migrations"}}
|
|
:nats {:url "nats://localhost:4222"
|
|
:stream-name "ajet-events"
|
|
:publish-timeout-ms 5000}
|
|
:minio {:endpoint "http://localhost:9000"
|
|
:access-key "minioadmin" :secret-key "minioadmin"
|
|
:bucket "ajet-chat"}
|
|
:limits {:max-message-length 4000
|
|
:max-upload-size 10485760
|
|
:edit-window-minutes 60
|
|
:default-page-size 50
|
|
:max-page-size 100}
|
|
|
|
:profiles
|
|
{:test {:db {:host "localhost" :port 5433 :dbname "ajet_chat_test"
|
|
:password "ajet_test"}
|
|
:nats {:url "nats://localhost:4223"}
|
|
:minio {:endpoint "http://localhost:9002"}}
|
|
:prod {:db {:pool-size 20}
|
|
:nats {:publish-timeout-ms 10000}}}}
|