removed dev.dhall

This commit is contained in:
Yann Esposito (Yogsototh) 2019-09-10 22:41:01 +02:00
parent e09653d3a6
commit 038a7dc56b
Signed by untrusted user who does not match committer: yogsototh
GPG key ID: 7B19A4C650D59646

View file

@ -1,20 +0,0 @@
{-
Aggreact Configuration File
-}
let SQLiteConfig : Type = { filepath : Text }
let PostgresConfig
: Type
= { host : Text, port : Natural, user : Text, password : Text }
let DBConf : Type = < SQLite : SQLiteConfig | Postgre : PostgresConfig >
in { port =
3000
, jwtKeyFilePath =
"jwt.key"
, db =
DBConf.SQLite { filepath = "aggreact.db" }
}