From dc96417e4c2bbfe00b5ff56c684ec7a8abf2f31e Mon Sep 17 00:00:00 2001 From: Alex Wybraniec Date: Mon, 14 Oct 2024 15:07:26 +0100 Subject: [PATCH] Update README.md - Heroku Postgres Hobby plan doesn't exist anymore Replacing with the lowest tier paid plan available `essential-0` https://elements.heroku.com/addons/heroku-postgresql --- docs/recipes/heroku-server/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/recipes/heroku-server/README.md b/docs/recipes/heroku-server/README.md index 0b9751b4e..50be33fd6 100644 --- a/docs/recipes/heroku-server/README.md +++ b/docs/recipes/heroku-server/README.md @@ -25,8 +25,8 @@ This assumes you've already signed up, created a heroku account, and installed t ```bash # Create a new project on heroku heroku create -# Add a free database to your project -heroku addons:create heroku-postgresql:hobby-dev +# Add a database to your project +heroku addons:create heroku-postgresql:essential-0 # Deploy your code to heroku git push heroku main # Ensure heroku is running your app and open the URL