Installation Guide¶
Follow these steps to install and set up the Smart Resume Parser and Job Matcher application:
Clone the repository:
git clone git@github.com:abdullahmujahidali/ResumeParser-JobMatcher.git cd SmartResumeJobMatcher
Set up a virtual environment:
python -m venv myenv source myenv/bin/activate
Install dependencies:
pip install -r requirements.txt
Set up environment variables:
Create a .env file in the project root with the following content:
OPENAI_API_KEY=your_openai_api_key OPENAI_PARSER_ASSISTANT_ID=your_parser_assistant_id OPENAI_JOB_MATCHER_ASSISTANT_ID=your_job_matcher_assistant_id
Apply migrations and start the server:
python manage.py migrate python manage.py runserver