15 lines
223 B
Plaintext
15 lines
223 B
Plaintext
|
config = require "lapis.config"
|
||
|
|
||
|
config "development", ->
|
||
|
port 8080
|
||
|
|
||
|
postgres ->
|
||
|
backend "pgmoon"
|
||
|
host "127.0.0.1"
|
||
|
user "lapis"
|
||
|
password "lapis"
|
||
|
database "panel"
|
||
|
|
||
|
config "production", ->
|
||
|
port 5000
|