Skip to content

Commit 00fc17b

Browse files
zundaGargron
authored andcommitted
Bind servers to 0.0.0.0 in Procfile (#11378)
* Bind to 0.0.0.0 * Make Procfile common to main and streaming apps
1 parent c669bb4 commit 00fc17b

1 file changed

Lines changed: 13 additions & 1 deletion

File tree

Procfile

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,14 @@
1-
web: bundle exec puma -C config/puma.rb
1+
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
22
worker: bundle exec sidekiq
3+
4+
# For the streaming API, you need a separate app that shares Postgres and Redis:
5+
#
6+
# heroku create
7+
# heroku buildpacks:add heroku/nodejs
8+
# heroku config:set RUN_STREAMING=true
9+
# heroku addons:attach <main-app>::DATABASE
10+
# heroku addons:attach <main-app>::REDIS
11+
#
12+
# and let the main app use the separate app:
13+
#
14+
# heroku config:set STREAMING_API_BASE_URL=wss://<streaming-app>.herokuapp.com -a <main-app>

0 commit comments

Comments
 (0)