A simple blog application built with Django with basic CRUD functionality.
- Create Blog Post
- Read a Blog
- Update a Blog
- Delete a Blog
Follow the instruction to run the code in your local machine:
- clone this repository using:
git clone https://github.com/beingbiplov/djBlog.git - Move into the new directory:
cd djBlog - Create a virtual environment and activate it.
- Install dependencies with:
pip install -r requirements.txt - Migrate the database:
python manage.py migrate - Start the server:
python manage.py runserver
Now you can visithttp://127.0.0.1:8000to see the web app in action.