Skip to content

Commit

Permalink
Make Procfile common to main and streaming apps
Browse files Browse the repository at this point in the history
  • Loading branch information
zunda committed Jul 22, 2019
1 parent e931cd1 commit d7d15d4
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions Procfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
web: BIND=0.0.0.0 bundle exec puma -C config/puma.rb
#web: BIND=0.0.0.0 node ./streaming # for streaming app
web: if [ "$RUN_STREAMING" != "true" ]; then BIND=0.0.0.0 bundle exec puma -C config/puma.rb; else BIND=0.0.0.0 node ./streaming; fi
worker: bundle exec sidekiq

# For the streaming API, you need a separate app that shares Postgres and Redis:
#
# heroku create
# heroku buildpacks:add heroku/nodejs
# heroku config:set RUN_STREAMING=true
# heroku addons:attach <main-app>::DATABASE
# heroku addons:attach <main-app>::REDIS
#
# and let the main app use the separate app:
#
# heroku config:set STREAMING_API_BASE_URL=wss://<streaming-app>.herokuapp.com -a <main-app>

0 comments on commit d7d15d4

Please sign in to comment.