/django-blog

A barebones blog web application based on Django and HTML with sign-in, sign up and adding post feature available to registered users.

Primary LanguageHTML

django-blog

A barebones/minimalistic blog web application based on Django and HTML with sign-in, sign up and adding post feature available to registered users. Deployed on Heroku here - r/sheesh blog

Uses the default SQLite for db purpose. Go through django documentation if you want to host on some other platform/db, instead of default and localhost.

The app is based on freecodecamp.org's Python Backend Web Development (with Django) tutorial along with some modifications such as adding post from the app itself along user auth.

Django-tutorial

Feel free to use my code.

Prereqs

Python 3.6 and Django

Steps to start

Steps :

  1. Create a new virtual environment
  2. pip install -r requirements.txt
  3. Run in cmd - python manage.py runserver
  4. Open a browser and go to localhost:8000

Screenshots

Home : home

Home (logged in) : home-logged-in

Register : register

Login: login

Profile: profile

View Full Post: post

Add post: add-post