Django_blog

Have fun with Django & Bootstrap!

MIT License

Stars
1

Django Blog 📋

Play with Django framework based on Coding For Entrepreneurs tutorials.

Preview

Home Post Preview Post Form
alt text alt text alt text

[Based on Bootstrap theme:]https://github.com/BlackrockDigital/startbootstrap-blog-home

Features

  • Responsive
  • Admin page (create, update & delete posts)
  • Draft posts and future posts
  • Search posts
  • Dynamic URL rooting + URL slags
  • Pagination
  • Facebook api for comments + likes

Requirements

Setup Environment

Create virtual env with virtualenv. Install virtualenv if you don't have installed yet

pip install virtualenv
# Create python virtual env dir
mkdir py_env

# Create project virtual env
virtualenv py_env

# Install all the project libraries via pip
pip install -r requirements.txt

# Activate the python project env
source py_env/bin/activate

Run Server

python manage.py runserver