-
Notifications
You must be signed in to change notification settings - Fork 34
Open
Labels
Description
Hello,
thanks for this great process manager!
After rails 5.1 introduced webpack, I tried to keep webpack-dev-server and rails 5 running in parallel. Unfortinually, with hivemind it does not work, webpack-dev-server just does not produce any output after starting.
Procfile:
web: bundle exec rails s
assets: ./bin/webpack-dev-server
Output after typing hivemind
web | Running...
assets | Running...
assets | 10% building modules 1/1 modules 0 active
assets | Project is running at http://localhost:8080/
assets | webpack output is served from http://localhost:8080/packs/
assets | Content not from webpack is served from /Users/lisovskiivladislav/work/factory/factory-management-backend/public/packs
assets | 404s will fallback to /index.html
web | => Booting Puma
web | => Rails 5.1.0 application starting in development on http://localhost:3000
web | => Run `rails server -h` for more startup options
web | Puma starting in single mode...
web | * Version 3.8.2 (ruby 2.4.1-p111), codename: Sassy Salamander
web | * Min threads: 5, max threads: 5
web | * Environment: development
web | * Listening on tcp://0.0.0.0:3000
web | Use Ctrl-C to stop
If to launch 2 processes each in an own tab, it works.