Browse Source

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
closed-social-glitch-2
Eugen Rochko 7 years ago
committed by GitHub
parent
commit
0cb4b9205c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      Procfile.dev

+ 1
- 1
Procfile.dev 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

Loading…
Cancel
Save