Aurelia
7 mesi fa
committed by
GitHub
Non sono state trovate chiavi note per questa firma nel database
ID Chiave GPG: 4AEE18F83AFDEB23
2 ha cambiato i file con
3 aggiunte e
1 eliminazioni
-
Procfile
-
bin/heroku-web
|
|
|
@@ -1,4 +1,4 @@ |
|
|
|
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: |
|
|
|
|
|
|
|
@@ -0,0 +1,2 @@ |
|
|
|
#!/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 |