It is django project that illustrates how to implement categories in a django site with django-mptt module
- Clone repository
git clone https://github.com/karansthr/django_mptt_categories - cd (change directory) to repository.
- Create a virtualenv
virtualenv -p python3 . - Activate virtualenv
source bin/activate - Install required packages
pip3 install -r requirements.txt - cd to src
- Run the server
python3 manage.py runserver
If you want to add posts and categories then goto localhost:[port]/admin and login with username = password = djangopy
or you can create new user with python3 manage.py createsuperuser