https://github.com/ggeop/django_blog
Have fun with Django & Bootstrap!
https://github.com/ggeop/django_blog
blog bootstrap django python3
Last synced: 5 months ago
JSON representation
Have fun with Django & Bootstrap!
- Host: GitHub
- URL: https://github.com/ggeop/django_blog
- Owner: ggeop
- License: mit
- Created: 2018-12-25T23:09:07.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-11-22T01:01:51.000Z (over 3 years ago)
- Last Synced: 2025-06-17T05:04:35.783Z (about 1 year ago)
- Topics: blog, bootstrap, django, python3
- Language: JavaScript
- Homepage:
- Size: 1.95 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Django Blog :clipboard:
Play with Django framework based on Coding For [*Entrepreneurs tutorials*](https://github.com/codingforentrepreneurs).
## Preview
Home| Post Preview | Post Form
---|---|---
 | | 
[*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
* [*Python 3.x*](https://www.python.org/downloads/release/python-360/)
* [*Django 1.8*](https://docs.djangoproject.com/en/2.1/releases/1.8/)
## Setup Environment
Create virtual env with virtualenv.
Install virtualenv if you don't have installed yet
```bash
pip install virtualenv
```
```bash
# 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
```bash
python manage.py runserver
```