1234567891011121314 |
- local config
- do
- local _obj_0 = require("lapis.config")
- config = _obj_0.config
- end
- config("development", function()
- return postgresql_url("postgres://benchmarkdbuser:[email protected]/hello_world")
- end)
- return config("production", function()
- port(80)
- num_workers(4)
- lua_code_cache("on")
- return postgresql_url("postgres://benchmarkdbuser:[email protected]/hello_world")
- end)
|