config.moon 314 B

123456789101112131415
  1. import config from require "lapis.config"
  2. config "development", ->
  3. config {"production", "development"}, ->
  4. port 80
  5. num_workers 4
  6. lua_code_cache "on"
  7. logging false
  8. postgres ->
  9. backend "pgmoon"
  10. database "hello_world"
  11. user "benchmarkdbuser"
  12. password "benchmarkdbpass"
  13. host DBHOSTNAME