config.moon 309 B

12345678910
  1. import config from require "lapis.config"
  2. config "development", ->
  3. postgresql_url "postgres://benchmarkdbuser:[email protected]/hello_world"
  4. config "production", ->
  5. port 80
  6. num_workers 4
  7. lua_code_cache "on"
  8. postgresql_url "postgres://benchmarkdbuser:[email protected]/hello_world"