make 'PORT=5000 foreman start' work

This commit is contained in:
Koen Van der Auwera
2012-05-16 23:59:09 +02:00
parent 0b0324fed9
commit 9b2987c3f0
+1 -1
View File
@@ -84,7 +84,7 @@ private ######################################################################
end
def base_port
options[:port] || environment["PORT"] || 5000
options[:port] || environment["PORT"] || ENV["PORT"] || 5000
end
def kill_all(signal="SIGTERM")