client/src/Config.elm
module Config exposing (endpoint)
endpoint = "http://localhost:3333/tasks"
server/pgconf.yaml
user : "_env:PG_USER:{}"
password: "_env:PG_PASS:{}"
host : "_env:PG_HOST:{}"
port : "_env:PG_PORT:{}"
database: "_env:PG_DATABASE:{}"
poolsize: "_env:PG_POOLSIZE:{}"