Add dokku stuff for config

This commit is contained in:
Sam Dodrill 2015-01-08 18:44:33 -08:00
parent b5984b43ec
commit 36c415b160
1 changed files with 9 additions and 1 deletions

View File

@ -11,4 +11,12 @@ config "development", ->
database "panel"
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"