我现在遇到了几个问题,我几乎得到了Chatterbot示例,它可以在Heroku上运行Django。
这是我的示例页面。 https://polar-basin-92507.herokuapp.com/
查看日志问题似乎是
OperationalError:没有这样的表:django_chatterbot_statement
完整日志https://hastebin.com/mucanobuki.sql
git source https://github.com/gunthercox/ChatterBot/tree/master/examples/django_app/example_app
从我可以告诉他们的例子是设置使用sqlite3但heroku不支持,我需要以某种方式切换到postgres?不确定,这是我想要一些指导的地方。
答案 0 :(得分:2)
您需要在heroku中设置Postgresql。只需在找到here
的settings.py文件中添加这些行import dj_database_url
db_from_env = dj_database_url.config()
DATABASES['default'].update(db_from_env)