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:
parent
6e911e69f8
commit
dab21915b4
2 changed files with 2 additions and 2 deletions
|
@ -1,2 +1,2 @@
|
|||
backend: bin/rails s -p ${PORT:=3000}
|
||||
backend: bin/rails s -p 3000
|
||||
frontend: bin/webpack-dev-server
|
|
@ -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
|
Loading…
Reference in a new issue