Add dokku stuff for config
This commit is contained in:
parent
b5984b43ec
commit
36c415b160
10
config.moon
10
config.moon
|
@ -11,4 +11,12 @@ config "development", ->
|
||||||
database "panel"
|
database "panel"
|
||||||
|
|
||||||
config "production", ->
|
config "production", ->
|
||||||
port 5000
|
port os.getenv "PORT"
|
||||||
|
|
||||||
|
postgres ->
|
||||||
|
backend "pgmoon"
|
||||||
|
host os.getenv "DB_HOST"
|
||||||
|
port os.getenv "DB_PORT"
|
||||||
|
user os.getenv "DB_USER"
|
||||||
|
password os.getenv "DB_PASS"
|
||||||
|
database os.getenv "DB_NAME"
|
||||||
|
|
Loading…
Reference in New Issue