To simplify things, keep it clean, keep it standard, and to enable the catalog db seed job to work; I have simplified the database connection env variables.
Before there were separate env variables which were then later on constructed into the full database connection url. This introduced unnecessary complexity especially since the database url was the only thing needed (i.e. no part of the app used the individual env variables).
Now there is only one variable pertaining to the database connectivity and that is the full url called: DATABASE_URL. I have corrected the .env.example file, README instructions, and deployment files.
To simplify things, keep it clean, keep it standard, and to enable the catalog db seed job to work; I have simplified the database connection env variables.
Before there were separate env variables which were then later on constructed into the full database connection url. This introduced unnecessary complexity especially since the database url was the only thing needed (i.e. no part of the app used the individual env variables).
Now there is only one variable pertaining to the database connectivity and that is the full url called:
DATABASE_URL
. I have corrected the .env.example file, README instructions, and deployment files.