[Answered ]-Chatterbot Django and Heroku (Issues Running Example)

2👍

You need to setup Postgresql in heroku. Just add these lines in your settings.py file found here

import dj_database_url
db_from_env = dj_database_url.config()
DATABASES['default'].update(db_from_env)

Leave a comment