Our assignment is a Node.js, Express, and EJS project for Web Development: Advanced Web Scripting Concepts called Campus Connect.
Campus Connect is intended to help junior developers or graduate students to gain experience while tracking their skill’s progress needed to achieve their.
Hiring a new employee can be time consuming and costly for companies. Campus Connect's objective is to connect companies who are looking to hire - to students to develop projects.
Instructions You have delivered the three deliverables so far, and in this report you will be documenting/merging all of your work into a report.
- Functional requirements
- Non Functional requirements
- WBS
- Task Tickets
- Time spent on each task
- Update your readme final with any of the work you have done after deliverable three.
PS: This report can be your draft report of your final project.
To run this project, you will need to add the following environment variables to your .env
files
You will get these by creating an Application
and an API
at https://auth0.com/
Client .env
variables can be found in the Auth0 Application Settings or Quick Start.
Server .env
variables can be found in the Auth0 API Settings or Quick Start.
You will also see a .env.example
file in each folder with some pre-filled variables that need not be changed.
Client .env
SECRET=
BASE_URL=
CLIENT_ID=
ISSUER_BASE_URL=
CLIENT_SECRET=
Server API .env
JWKSURI=
AUDIENCE=
ISSUER=
To deploy this project open two terminals.
- Navigate into
client
cd client
- Install dependencies
npm install
- Run program
npm start
- Navigate into
server
cd server
- Install dependencies
npm install
- Run program
npm start