Skip to content

A Django based blog website where users can Create blogs, comment , update and delete their posts, add category and filter the blogs based on the category.

License

Notifications You must be signed in to change notification settings

pkini2002/DBlog-Application

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

76 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DBlog

Powered by Django.

ER Diagram

ER-diagram


Pages

  • Home page
  • Article Detail page
  • Add Post Page
  • Add Category Page
  • Update Post
  • Delete Post
  • Add Comment page
  • Blogs filtered by category page
  • Category List Page
  • Register Page
  • Login Page
  • Edit Profile Page
  • Password Change page
  • Show Profile Page
  • Edit Profile Page
  • Create profile page

Installation

    • Fork the repo
    • Clone the repo to your local system
    git clone https://github.com/pkini2002/DBlog-Application.git
    cd DBlog-Application
    

    Make sure you have python installed on your system.

  1. Create a Virtual Environment for the Project

    If u don't have a virtualenv installed

    pip install virtualenv

    For Windows Users Initially when you clone the project run

    virtualenv env
    source env/Scripts/activate

    For subsequent run of the project you can simply use

    virtualenv env
    env/Scripts/activate

    For Linux Users

    virtualenv env
    source env/Scripts/activate

    If you are giving a different name than env, mention it in .gitignore first

  2. Install all the requirements

    pip install -r requirements.txt
  3. Make migrations/ Create db.sqlite3

    python manage.py makemigrations
    python manage.py migrate
  4. Create a super user. This is to access Admin panel and admin specific pages.

    python manage.py createsuperuser
    

    Enter your username, email and password.

  5. Run server

    python manage.py runserver

Snapshots

Home Page

Home

Article Detail Page

article details

Blogs filtered by category page

category filtering

About

A Django based blog website where users can Create blogs, comment , update and delete their posts, add category and filter the blogs based on the category.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •