IntelliHire is a web application that consists of a React frontend and a Flask backend.
Before running the application, make sure you have the following installed:
- Node.js
- Python
- pip
-
Clone the repository:
git clone <repository_url>
-
Install dependencies after creating venv:
cd backend python -m venv .venv source .venv/bin/activate pip install -r requirements.txt cd ../frontend npm install
-
Start the Flask backend:
cd backend source .venv/bin/activate python app.py
The backend will run on
http://localhost:5000
. -
Start the React frontend:
cd frontend npm start
The frontend will run on
http://localhost:3000
. -
Open your web browser and navigate to
http://localhost:3000
to access the application.
This project is licensed under the MIT License.