Environment variables
Variables that are isolated from the codebase.
DATABASE_USER = postgres
DATABASE_PASSWORD = pass123
DATABASE_HOST = localhost
DATABASE_PORT = 5432
DATABASE_NAME = postgresDATABASE_URL = postgresql://${DATABASE_USER}:${DATABASE_PASSWORD}@${DATABASE_HOST}:${DATABASE_PORT}/${DATABASE_NAME}Last updated