Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why is foreman gem ignoring the PORT environment variable?

I want the foreman gem to use the PORT value provided in the my development env file instead of using its own values. My files setup is shown below:

  1. A bash script to start foreman:

    foreman start -e development.env

  2. The development.env file content:

    PORT=3000

  3. The Procfile content

    web: bundle exec rails server thin -p $PORT -e $RAILS_ENV $1

The dev server ends up starting on port 5000. I know I can start foreman with --p 3000 to force it to use that port. But that defeats the purpose of the env file.

Any suggestions?

like image 699
Tabrez Avatar asked Mar 21 '12 11:03

Tabrez


2 Answers

I know this is an old post but it took me a while to figure out so might as well add a note here.

Foreman increments the PORT based on where your define the service in the Procfile.

Say our PORT environment variable is set to 3000.

In our first Procfile example Puma will run on PORT 3000:

web: bundle exec puma -q -p $PORT
worker: bundle exec rake jobs:work

But in our second Procfile it will run on PORT 3100 as the PORT variable is used on the second line.

worker: bundle exec rake jobs:work
web: bundle exec puma -q -p $PORT

Not sure why, I guess to prevent different processes from trying to take the same PORT.

like image 90
Cimm Avatar answered Oct 19 '22 05:10

Cimm


Looking at the code: https://github.com/ddollar/foreman/blob/master/lib/foreman/process.rb it looks foreman will only take the PORT as a command line argument.

like image 20
Neil Middleton Avatar answered Oct 19 '22 05:10

Neil Middleton