3

I'm trying to push my application to Heroku using Django, however when I run heroku addons:create heroku-postgresql:hobby-dev -a (appname) it gives me this error:

Couldn't find either the add-on service or the add-on plan of "heroku-postgresql:hobby-dev". ! I have also checked that the free version was changed from November 28th, 2022. Is there any other Database add-ons that is reliable so I can use to deploy my app on Heroku. Any suggestions?

Behdad Kh
  • 31
  • 4
  • 1
    I changed `heroku-postgresql:hobby-dev` to `heroku-postgresql:mini` and it worked as expected. Thanks for the tip, @Myth. – hourback Feb 18 '23 at 04:59

1 Answers1

1

You can use Heroku CLI to check which are the available add-ons by heroku:

heroku addons

There are some other databases which you can use for deploy on heroku like:

Heroku Postgres: There are paid service of heroku postgres available with plans, pricing of heroku postgres. There are some 3rd party add-ons which you can use in postgres too => ElephantSQL, mLab, clearDB

Myth
  • 338
  • 7