This change moves the existing .env file to .env.example while adding .env to .gitignore. It also adds in an extra variable PGUSER=casekit to the now .env.example file. Adding this file allows updates to the .env file without committing it as well as making it more explicit what values are used for the connection since the node-pg package uses these environment variables by default for connection.
Overview
This change moves the existing
.env
file to.env.example
while adding.env
to .gitignore. It also adds in an extra variablePGUSER=casekit
to the now.env.example
file. Adding this file allows updates to the .env file without committing it as well as making it more explicit what values are used for the connection since thenode-pg
package uses these environment variables by default for connection.