djangoherokuwwwhisper

Using wwwhisper for a Django app in Heroku


it is possible to use wwwhisper add-on for a Django app? In that case, where can I find any guide about how to configure it? I've already installed the add-on, but I don't know how to make it work.

Thanks.


Solution

  • wwwhisper author here. The add-on works only with Ruby and Node.js applications on Heroku. The recently released wwwhisper buildpack allows to use the wwwhisper add-on with any language and framework supported by Heroku including Django.

    To enable the buildpack, execute:

    heroku buildpacks:add auth/wwwhisper
    git commit --allow-empty -m "Enable wwwhisper buildpack."
    # Replace 'heroku' with the name of your Heroku remote, and 'main' with
    # the name of the branch to deploy to Heroku:
    git push heroku main
    

    Heroku devcenter documentation has more details