Our application is a three-tier full-stack web application to assist CGI with managing candidate data.
- In a terminal, navigate to
/frontend
. - To download the
node_modules
folder, run the commandnpm install
. - To start the app, run the command
npm start
.
- In a terminal, navigate to
/backend
. - To download the
node_modules
folder, run the commandnpm install
. - Create a file named
.env
with the following keys:DB_USER
set to the username of the database.DB_PASSWoRD
set to the password of the database.- Optionally,
PORT
set to the desired port for the Node server to run on (defaulted to 8080).
- To start the server, run the command
nodemon server.mjs
.