Fix rails port getting toggled from 3000 to 5000 (#319)

Fix rails port getting toggled from 3000 to 5000 when using foreman
This commit is contained in:
Sojan Jose
2019-11-28 13:36:29 +05:30
committed by GitHub
parent 6e911e69f8
commit dab21915b4
2 changed files with 2 additions and 2 deletions

View File

@@ -1,2 +1,2 @@
backend: bin/rails s -p ${PORT:=3000}
backend: bin/rails s -p 3000
frontend: bin/webpack-dev-server

View File

@@ -1,2 +1,2 @@
backend: ../bin/rails server -b 0.0.0.0 -p ${PORT:=3000}
backend: ../bin/rails server -b 0.0.0.0 -p 3000
frontend: ../bin/webpack-dev-server