Dhall configuration
This commit is contained in:
8
config/config.dhall.sample
Normal file
8
config/config.dhall.sample
Normal file
@ -0,0 +1,8 @@
|
||||
{
|
||||
database = {
|
||||
username = "username"
|
||||
, password = "password"
|
||||
, host = "hostname"
|
||||
, database = "ebook"
|
||||
}
|
||||
}
|
10
config/devel.dhall
Normal file
10
config/devel.dhall
Normal file
@ -0,0 +1,10 @@
|
||||
-- Devel configuration file, with defaults for local testing environment
|
||||
-- pre-filled
|
||||
{
|
||||
database = {
|
||||
username = "postgres"
|
||||
, password = "devel"
|
||||
, host = "localhost"
|
||||
, database = "postgres"
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user