config.moon 252 B

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