This is the open-source version of the resume screening APIs
To install the project, you will need to have Python installed on your machine. Once you have Python installed, you can install the project dependencies by running the following command:
pip install -r requirements.txt
To run the project, you can run the following command:
uvicorn main:app --reload
This will start the project on port 8000. You can then access the API documentation at http://localhost:8000/docs.
First, you'll need to build the image :
docker build -t screening-apis .
After that, you can run it using :
docker run -d -p 8000:8000 screening-apis