Skip to content

Latest commit

 

History

History
35 lines (21 loc) · 1.12 KB

README.md

File metadata and controls

35 lines (21 loc) · 1.12 KB

Blogging Web Application

About

This Project is made using Python 3.6 + Django and Database is SQLite. This web application creates an very basic blog using Django.It allows blog authors to create blogs using the Admin site with login and registration functionality.

Screenshots

Screenshot (732)

Screenshot (732)

Screenshot (731)

Quick Start

Clone This Project https://github.com/chazuttu/blogs.git

Install Dependencies

  • pip install -r requirements.txt

Set Database (Make Sure you are in directory same as manage.py)

  • python manage.py makemigrations
  • python manage.py migrate

Create SuperUser

  • python manage.py createsuperuser

Run Server

  • python manage.py runserver

Open a browser to http://127.0.0.1:8000/admin/ to open the admin site

Open tab to http://127.0.0.1:8000/home/ to see the main site.