15 lines
273 B
Plaintext
15 lines
273 B
Plaintext
|
config = require "lapis.config"
|
||
|
|
||
|
postgres_password = os.getenv "POSTGRES_PASSWORD"
|
||
|
|
||
|
config "development", ->
|
||
|
postgres ->
|
||
|
host "passwd-db"
|
||
|
user "postgres"
|
||
|
database "postgres"
|
||
|
password postgres_password
|
||
|
num_workers 2
|
||
|
code_cache "on"
|
||
|
|
||
|
digest_rounds 12
|