A blog served on a web application using Django 1.9
Link soon to come
If you want to download and view this blog locally follow along with the instructions underneath using your command line
-
Clone this directory
git clone https://github.com/Maanav-G/Blog.git cd Blog -
Install Python 3:
Download Python 3 from https://www.python.org/downloads/
After download check and make sure you have Python 3 downloaded
python --version -
Install Pip (Python Package Installer):
sudo easy_install pip -
Install virtualenv:
sudo pip install virtualenv -
Activate virtualenv:
source bin/activate -
Install Django:
pip install django==1.9 -
Run the blog!
cd src python manage.py runserver
- Bug fixes
- Adding user accounts
- Making it more aesthetically pleasing
- Publishing it online
If you got this far, and went through the instructions (that I didn't think anyone would bother going through), then congratualations!