This app suggests skills for a given job title (using OpenAI), and allows users to identify which of the suggested skills are incorrect. The data on job title, correct and incorrect skill suggestions are saved to the database.
- Clone the repository:
git clone [email protected]:i-dot-ai/skills-review.git
- Create a copy of the
.env.sample
file and rename it to.env
- Obtain an OpenAI API key by visiting the OpenAI website
- Add the key to the
.env
file as the value for theOPENAI_KEY
environment variable - Run the project locally:
docker-compose up
- Visit http://localhost:8008/
To access the admin:
- Create a superuser:
docker-compose run web python manage.py createsuperuser
- Go to http://localhost:8008/admin/
To access the Django shell (eg to query database):
docker-compose run web python manage.py shell
Make sure to keep the .env
file in the .gitignore file if you are planning on pushing this to a remote repository.