aggreact/dev.dhall
Yann Esposito (Yogsototh) 1381b35a01
🚧 WIP 🚧
2019-01-20 01:16:19 +01:00

14 lines
No EOL
324 B
Text

{-
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, db = DBConf.SQLite { filepath = "aggreact.db" } }