DarthSim / overmind

Process manager for Procfile-based applications and tmux
MIT License
2.84k stars 79 forks source link

Support taking PORT from .env #45

Closed paneq closed 5 years ago

paneq commented 5 years ago

Here is my config:

$ cat Procfile 
web: bin/rails s -p $PORT
webpack: yarn start

$ cat .env
PORT=3003

But overmind ignores the PORT from .env and I had to create .overmind.env with the same config.

$ cat .overmind.env 
OVERMIND_PORT=3003

It would be nice if it worked out of the box.

Other than that, I am super happy with overmind and thank you for creating it! It's the only issue I've ever encountered after 3 months of using it.

DarthSim commented 5 years ago

Added to v2.0

paneq commented 5 years ago

That was fast. Thank you!