JobFinder is the one stop solution for checking various internship and job opportunities posted by TPC, IIT Indore.
- Use various filters to check opportunities according to your preference!
- Use search box for searching jobs/internships by entering any keyword!
- Create an account to bookmark your preferred choices and view them anytime!
- Admin - can create, update, delete and save job posts.
- User - can save job posts.
- Guest - can only view.
Filters and Search bar can be used by all of the above.
-
Filters - 4 types of filters can be applied: Job Type, Job Title, State and City. They can be applied one at a time or all at once. Filters have autocomplete functionality and have a list of options available for each of them. User can select multiple fields in Job Type for filtering.
-
Search Bar - uses Full Text Search to search for a single or multiple words in the job posts.
Visit our website at: https://job-finder-123.netlify.app
-
Drop a ⭐ on the GitHub repository.
-
Download Git (when you install Git, Git Bash also gets installed by default)
-
Download and install a code/ text editor. - Recommended- - Download VS Code - Download Atom
-
Download Node Js and npm(Node package manager) (when you install Node, npm also gets installed by default)
-
Mongo DB community editition is free and a great software in order to work with MongoDB applications. Download Mongo DB community editition
-
Robo 3T is a desktop graphical user interface (GUI) for Mongo DB. It can help to skip running all the Mongo DB commands manually every time we want to access the data. Download Robo 3T (optional)
-
Clone the repository by running command
git clone https://github.com/<your user-name>/Off-campus-Job-Opportunities-Portal.git
in your git bash.
-
Run command
cd Off-campus-Job-Opportunities-Portal
. -
Again, run command
cd client
. -
Run this command to install all dependencies for the frontend of this project.
npm install
-
Adding secret key for Google Sign In.
- Run this command when inside the root directory to make a
.env
file.
touch .env
- Now add this to the
.env
file. You need to create your own API key on google developers console for successfully running google sign in the website in your local system.
REACT_APP_CLIENT_ID=your-google-api-key
- Run this command when inside the root directory to make a
-
Now, run command
cd server
. -
Run this command to install all dependencies for the backend of this project.
npm install
-
Adding secret key for JWT auth.
- Run this command when inside the root directory to make a
.env
file.
touch .env
- Now add this to the
.env
file
SECRET_KEY = your-secret-key URL = mongodb://localhost:27017/jobFinderDB
- Run this command when inside the root directory to make a
-
Testing : Run this command on your terminal/ bash to start the Mongo server on port 27017(default).
mongod
- Run this command to start the project.
npm start
or
- Run this command to start the project as a developer.
npm run dev
- Open link to view the website in your browser window if it doesn't open automatically.
http://localhost:3000/
- Now you are all set to use this project.
- Sakshi Verma and Pallavi Upadhyay