Skip to content

Commit 61ca8f4

Browse files
committed
Add app.json
To add the Heroku Postgres add-on when the app is deployed to Heroku. Our Review Apps were failing because our `release` phase was running before Postgres was available. Specifying the Postgres add-on in app.json appears to solve this problem.
1 parent c87d1ac commit 61ca8f4

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

app.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"addons": [
3+
{
4+
"plan": "heroku-postgresql",
5+
"options": {
6+
"version": "14"
7+
}
8+
}
9+
]
10+
}

0 commit comments

Comments
 (0)