我有一个 Heroku 评论应用程序,它部署在每个 github 拉取请求上。
{
"name": "app_name",
"description": "",
"stack": "container",
"repository": "https://github.com/my_org/my_app.git",
"buildpack": "heroku/php",
"image": "php:7.2.11-fpm",
"addons": [
{
"plan": "heroku-redis:hobby-dev",
"as": "CACHE"
},
{
"plan": "heroku-postgresql:hobby-dev",
"as": "DATABASE"
},
{
"plan": "scheduler:standard",
"as": "SCHEDULER"
}
]
}
为了在 postgres 上启用 uuid-ossp,我必须在每次构建后执行这个
heroku pg:psql --app app_name_here
CREATE EXTENSION "uuid-ossp";
当我的评论应用程序启动时,如何自动使用它?有没有地方我可以在启动时注入一个脚本,以便 postgres 执行它?