Skip to content
Snippets Groups Projects
Unverified Commit 8630afb4 authored by Aurelia's avatar Aurelia Committed by GitHub
Browse files

fix: make Procfile compatible with herokuish (#12685)


Co-authored-by: default avatarAurelia <aurelia@serenitylabs.cloud>
parent 64ef37b8
No related branches found
No related tags found
No related merge requests found
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
web: bin/heroku-web
worker: bundle exec sidekiq
# For the streaming API, you need a separate app that shares Postgres and Redis:
......
#!/bin/bash
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
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment