Deploy a PostgreSQL Database on Heroku

Heroku Postgres is an SQL database service that allows you to use a relational database such as PostgreSQL on the Heroku platform. The Heroku Postgres service is a great option when you need a hosted database for your projects, MVPs or proofs-of-concept. Heroku has several pricing plans for this service,…

How to Set Environment Variables on Heroku

When deploying an application to Heroku, adding the environment variables in the .env file is not enough. You need to set the environment variables for your application on Heroku. There are two ways to do it, and in this article, you can see both! The environment variables are called config…