We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e931cd1 commit d7d15d4Copy full SHA for d7d15d4
1 file changed
Procfile
@@ -1,3 +1,14 @@
1
-web: BIND=0.0.0.0 bundle exec puma -C config/puma.rb
2
-#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
3
worker: bundle exec sidekiq
+
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