Harsh-Gadhavi / Placement-Prediction-and-Management-System

Campus Placement Prediction & Management System

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

🏫 Campus Placement Prediction & Management System

Predicts whether a Student gets Placed in Campus Placement using Brain.JS,

Uses Node.JS and MongoDB


πŸ“₯ Installing Web App πŸ“₯

One time installation

npm run initialize

Installs app (installs packages, creates data folders required)

Create User Configuration file user_config.json file inside config folder. An example file is given in the folder config named user_config.example.json. Note that you have to set your email id and password in the user_config.json to send emails. Keep the file secure, make sure to add in .gitignore. NETIMAGES are images from the internet (direct link), to show in mail. If you have a hosted server, you can use it. (Note: localhost won't work)

// config/user_config.json

{
  "OTP": {
    "TIMEOUT": 10
  },
  "MAIL": {
    "SERVICE": "gmail",
    "MAIL": "your_email_id_here",
    "PASSWORD": "your_password_here",
    "PORT": 465,
    "SECURE": true
  },
  "NETIMAGES": {
    "OTP": "path/to/online/hosted/image/background-image",
    "RECRUITER": "path/to/online/hosted/image/welcome-image"
  }
}

Databases

department , statistical_data & user_data

Example admin user (add manually in database)

{
  "email": "email_id",
  "password": "base64_encoded_password",
  "type": "admin",
  "messages": []
}

πŸƒ Starting πŸƒ

npm run start

πŸš€ Running in developer mode πŸš€

npm run dev

LICENSE

Licensed under agpl-3.0

About

Campus Placement Prediction & Management System

License:GNU Affero General Public License v3.0


Languages

Language:JavaScript 41.4%Language:CSS 31.0%Language:EJS 27.6%