Note - Before starting you should have node.js environment and mongoDB database installed on your system.
Generate Your Github Token by following the steps -
https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token
-
Install the dependencies and start the server.
cd Backend npm install
-
Configure the environment file by renaming .env.example file into .env Open the .env file and configure your mongodb environment variables and github token.
-
Start the backend server
node server.js
-
Install the dependencies and start the server.
cd Frontend npm install
-
Configure the environment. src/environements/environment.ts file The environment file contains the backend url so if you have changed the server port then you have to give same port in baseUrl
-
Start the frontend server
ng serve