- First make sure you have python install along with pip and virtualenv. Usually pip is installed along python and to install virtualenv: pip install virtualenv
- clone the repo
- create virtualenv:
virtualenv venv
orvirtualenv -p python3 venv
- activate virtualenv: for linux(
source venv/bin/activate
) and for windows(source venv/Scripts/activate
) - install django and necessary libraries in venv:
pip install -r requirements.txt
(all necessary libraries for project are in requirements.txt file) - also install
python -m spacy download en_core_web_sm
- before migrating make sure that you have install postgresql in your computer and if you want to use sqlite change the database in settings
- make neccessary migrations :
python manage.py makemigrations
- migrate the files:
python manage.py migrate
- create one superuser to access the admin panel:
python manage.py createsuperuser
- finally run the project:
python manage.py runserver
-
Notifications
You must be signed in to change notification settings - Fork 0
AwaleRohin/resume_parser
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
Simple Resume Parser
Topics
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published