11 lines
214 B
Lua
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"
|
|
}
|
|
})
|