我有一个部署在Heroku上并使用Heroku Postgres附加组件作为默认数据库的应用程序。我使用PostGIS和Hstore扩展来存储地理和Hstore(键值对)数据。
Got an error creating the test database: permission denied to create database
下面是我的app.json配置:
{
"environments": {
"test": {
"scripts": {
"test-setup": "pip install -r requirements.txt",
"test": "python manage.py test -v 2 --noinput"
},
"addons": [
"heroku-postgresql:hobby-dev",
"heroku-redis:in-dyno"
],
"buildpacks": [
{
"url": "heroku/python"
},
{
"url": "https://github.com/heroku/heroku-geo-buildpack"
}
]
}
}
}
此处的关键问题是:
我们非常感谢您的帮助/建议。