dt0/config.moon
2018-09-09 16:29:56 -07:00

13 lines
249 B
Plaintext

config = require "lapis.config"
postgres_password = os.getenv "POSTGRES_PASSWORD"
config "development", ->
postgres ->
host "dt-db"
user "postgres"
database "postgres"
password postgres_password
num_workers 2
code_cache "on"