A MERN based web App to conduct online interviews.
The directory structure of the project is as follows:
It is the front-end of the project Interview Assistant
It is developed using Reactjs, Material UI and many other modules.
REACT_APP_BACKEND_NODE_URL=YOUR_BAKEND_URL e.g. http://localhost:5000/api
REACT_APP_BACKEND_ASSET_URL=YOUR_ASSET_URL e.g. http://localhost:5000/
REACT_APP_BACKEND_PYTHON_URL=YOUR_PYTHON_URL e.g. http://localhost:5001
It is the Node Back-end of the project Interview Assistant
It is developed using Node, MongoDb, Mongoose, Node-mailer and many other modules.
{
"env":{
"DB_USER":"",
"DB_PASSWORD":"",
"DB_NAME":"",
"JWT_KEY":"",
"GMAIL_EMAIL":"",
"GMAIL_PASSWORD":"",
"PORT":5000,
"LOCALHOST":"http://localhost"
}
}
It is the python backend of the project Interview Assistant
It is developed using Python 3.7 and flask, socketio, tensorflow and many other modules.
python -m venv project_env
.\project_env\Scripts\activate
pip install -r requirements.txt
python app.py
or
./run