11 lines
205 B
Plaintext
11 lines
205 B
Plaintext
-- /config.dhall
|
|
{ hostname = "localhost"
|
|
, port = +3001
|
|
, environment = "development"
|
|
, adminDB = "admin"
|
|
, dataDB = "data"
|
|
, collection = "store"
|
|
, mongoUsername = "root"
|
|
, mongoPassword = "REPLACEME"
|
|
}
|