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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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