-
-
Notifications
You must be signed in to change notification settings - Fork 7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make Procfile common to main and streaming apps
- Loading branch information
Showing
1 changed file
with
13 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |