You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can see that only ENV['PORT'] is set to 5000. All the other ENV vars are nil.
Any ideas what could be the issue here?
If I start Rails via rails s, the ENV vars are all set.
PS The ENV vars are set in the rest of the app, even when I start the app through foreman, it's only that in config/puma.rb the ENV vars are not set. 🤷♂️
The text was updated successfully, but these errors were encountered:
Hi!
I'm using
foreman
gem to start my Rails app like this:foreman start -f Procfile.dev
In
Procfile.dev
the line that starts Rails server looks like this:backend: bundle exec puma -C config/puma.rb
And
config/puma.rb
looks like this:If I add some
puts
in there:I can see that only
ENV['PORT']
is set to5000
. All the other ENV vars arenil
.Any ideas what could be the issue here?
If I start Rails via
rails s
, the ENV vars are all set.PS The ENV vars are set in the rest of the app, even when I start the app through foreman, it's only that in
config/puma.rb
the ENV vars are not set. 🤷♂️The text was updated successfully, but these errors were encountered: