Setup project environment with python -m venv myenv.
$ git clone https://github.com/ikram9820/bookishpdf.git
$ cd bookishpdf
$ python -m venv .venv
# The Activation command is only for windows CMD
$ .venv/scripts/activate
$ pip install -r requirements.txt
$ python manage.py makemigrations books
$ python manage.py makemigrations
$ python manage.py migrate
$ python manage.py seed_db
$ python manage.py runserver