A fully featured blog application built with Django.
- User Registration
- User Login & Logout
- Create, Update, Edit & Delete Posts
- Blog Categories
- Comments
- Likes
- User Setting
Make sure you have already installed python3 and git.
git clone https://github.com/hmsayem/Verdict.git && cd Verdict
pip install -r requirements.txt
python manage.py migrate
python manage.py collectstatic
python manage.py createsuperuser
python manage.py runserver
The blog should be available at
localhost:8000
. You can login as an admin athttp://localhost:8000/admin
.