python 无法在Heroku上找到PostgreSQL数据库的附加爱好-dev

uqxowvwt  于 2023-01-19  发布在  Python
关注(0)|答案(1)|浏览(84)

我尝试使用Django将我的应用程序推送到Heroku,但是当我运行heroku addons:create heroku-postgresql:hobby-dev -a (appname)时,它给了我这个错误:
Couldn't find either the add-on service or the add-on plan of "heroku-postgresql:hobby-dev".!我还检查了免费版本从2022年11月28日起发生了变化。是否有其他可靠的数据库加载项,以便我可以使用它在Heroku上部署我的应用。有什么建议吗?

iklwldmw

iklwldmw1#

您可以使用Heroku CLI检查哪些是heroku提供的附加组件:

heroku addons

您还可以使用其他一些数据库在heroku上进行部署,例如:
Heroku Postgres:有付费服务的heroku postgres可与计划,定价heroku postgres。有一些第三方的附加组件,你可以使用postgres太=〉ElephantSQLmLabclearDB

相关问题