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
|
2022-07-18 16:07:04 -05:00
|
|
|
applicationPort from 3000.
|
2022-07-05 20:11:41 -05:00
|
|
|
-}
|
|
|
|
|
|
|
|
{ environment = "production"
|
|
|
|
, applicationHost = "REPLACEME"
|
|
|
|
, applicationPort = +3000
|
2022-07-18 16:07:04 -05:00
|
|
|
, dbFile = "data/Purr.sqlite"
|
2022-07-29 20:31:58 -05:00
|
|
|
, dbKey = "REPLACEME!!!!!"
|
2022-07-29 17:40:45 -05:00
|
|
|
, linkLength = +24
|
2022-07-01 20:34:29 -05:00
|
|
|
}
|