20 lines
350 B
Lua
20 lines
350 B
Lua
local config = require("lapis.config")
|
|
config("development", {
|
|
greeting = "dingen",
|
|
postgres = {
|
|
host = "postgres",
|
|
user = "postgres",
|
|
password = "the_password",
|
|
database = "postgres"
|
|
}
|
|
})
|
|
|
|
config("test", {
|
|
postgres = {
|
|
host = "postgres",
|
|
user = "postgres",
|
|
password = "the_password",
|
|
database = "test"
|
|
}
|
|
})
|