X-Git-Url: https://awoo.directory/mastodon.git/blobdiff_plain/971c4de18c35bcfe24e92d40b657950b19dfa62a..0635c8760dfdfeb3d763f1d1ae6cf5a208b29b6c:/Procfile diff --git a/Procfile b/Procfile index 646e26059..d15c835b8 100644 --- a/Procfile +++ b/Procfile @@ -1,2 +1,14 @@ -web: bundle exec puma -C config/puma.rb -worker: bundle exec sidekiq -q default -q push -q pull -q mailers +web: bin/heroku-web +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 ::DATABASE +# heroku addons:attach ::REDIS +# +# and let the main app use the separate app: +# +# heroku config:set STREAMING_API_BASE_URL=wss://.herokuapp.com -a