1

我现在遇到了几个问题,我几乎已经让 Chatterbot 示例适用于在 Heroku 上运行的 Django。

这是我的示例页面。 https://polar-basin-92507.herokuapp.com/

查看日志问题似乎是

OperationalError:没有这样的表:django_chatterbot_statement

完整日志https://hastebin.com/mucanobuki.sql

git 源https://github.com/gunthercox/ChatterBot/tree/master/examples/django_app/example_app

据我所知,他们的示例设置为使用 sqlite3,但 heroku 不支持,我需要以某种方式将其切换到 postgres?不确定,这是我想要一些指导的地方。

4

1 回答 1

2

您需要在 heroku 中设置 Postgresql。只需在此处找到的 settings.py 文件中添加这些行

import dj_database_url
db_from_env = dj_database_url.config()
DATABASES['default'].update(db_from_env)
于 2017-06-01T13:38:06.613 回答