PreviouslyOnIFM/code/config.lua
2020-07-22 19:23:15 +02:00

11 lines
214 B
Lua

local config = require("lapis.config")
config("development", {
greeting = "waddup",
postgres = {
host = "postgres",
user = "postgres",
password = "the_password",
database = "my_database"
}
})