Dhall configuration

This commit is contained in:
2018-08-02 23:07:05 +03:00
parent 6d08e9dad4
commit 7c08c46c16
9 changed files with 64 additions and 6 deletions

View File

@ -0,0 +1,8 @@
{
database = {
username = "username"
, password = "password"
, host = "hostname"
, database = "ebook"
}
}

10
config/devel.dhall Normal file
View 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"
}
}