This portfolio project was created as part of a Digital Skills Bootcamp in Software Engineering provided by Northcoders
-
Create Environment Variable Files:
- Create two
.env
files in the root directory of your project:.env.development
and.env.test
. - Add PGDATABASE=, with the correct database name for that environment (see /db/setup.sql for the database names)
- Create two
-
Ensure
.env
Files are Gitignored:- Confirm that your
.gitignore
includes.env.*
to prevent these files from being committed
- Confirm that your
- Install Project Dependencies:
- Run
npm install
to install all necessary dependencies
- Run