Fix sidekiq "port" being wrong (#3014)

Sidekiq doesn't need a port, however that env var is used for generating URLs
in development, so when foreman sets it wrong, you get bad URLs from the
streaming API during development
This commit is contained in:
Eugen Rochko 2017-05-12 17:46:14 +02:00 committed by GitHub
parent b5091f16f0
commit c06e03b31f

View file

@ -1,4 +1,4 @@
web: PORT=3000 bundle exec puma -C config/puma.rb
sidekiq: bundle exec sidekiq
sidekiq: PORT=3000 bundle exec sidekiq
stream: PORT=4000 yarn run start
webpack: ./bin/webpack-dev-server --host 0.0.0.0