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_modulesfolder, run the commandnpm install. - To start the app, run the command
npm start.
- In a terminal, navigate to
/backend. - To download the
node_modulesfolder, run the commandnpm install. - Create a file named
.envwith the following keys:DB_USERset to the username of the database.DB_PASSWoRDset to the password of the database.- Optionally,
PORTset to the desired port for the Node server to run on (defaulted to 8080).
- To start the server, run the command
nodemon server.mjs.