From 5853ed94f55cc3a83c4d781c82da45d01fe026da Mon Sep 17 00:00:00 2001 From: Frederic Merizen Date: Fri, 26 Oct 2018 11:05:04 +0200 Subject: [PATCH] Force port to 3000 when running on overmind On development machines - overmind + unicorn defaulted to port 3000 - overmind + puma defaults to port 5000 Forcing port 3000 rather than changing the readme and configuration --- Procfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Procfile b/Procfile index 56e81cebf..b203932cf 100644 --- a/Procfile +++ b/Procfile @@ -1,2 +1,2 @@ -server: bin/rails server +server: bin/rails server -p 3000 jobs: bin/delayed_job run