2022-07-01 20:34:29 -05:00
|
|
|
-- /config.dhall
|
2022-07-05 20:11:41 -05:00
|
|
|
{-
|
|
|
|
Default Dhall Configuration for Purr.
|
|
|
|
You will need to change all instances of "REPLACEME" with the
|
|
|
|
appropriate details. Additionally, you may want to change the
|
|
|
|
applicationPort from 3000 and the couchPort.
|
|
|
|
-}
|
|
|
|
|
|
|
|
{ environment = "production"
|
|
|
|
, applicationHost = "REPLACEME"
|
|
|
|
, applicationPort = +3000
|
|
|
|
, couchHost = "REPLACEME"
|
|
|
|
, couchPort = +5984
|
|
|
|
, couchUsername = "REPLACEME"
|
|
|
|
, couchPassword = "REPLACEME"
|
|
|
|
, adminDB = "REPLACEME"
|
|
|
|
, dataDB = "REPLACEME"
|
2022-07-01 20:34:29 -05:00
|
|
|
}
|