Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 684 Bytes

File metadata and controls

31 lines (20 loc) · 684 Bytes

django_blog inspired by 'Django By Example'

If you don't have virtualenv installed, type:

pip install virtualenv

Once you have virtualenv installed, create your environment by entering:

virtualenv blog

Fork the repo and clone a copy for your local work and cd into the django_blog directory:

cd django_blog

Start your virual environment:

source ../blog/bin/activate

If you need to deactivate the virtualenv, type:

deactivate

Install Django:

pip install Django==1.8.6

Migrate your db:

python manage.py migrate

Run the server:

python manage.py runserver

Open your browser to:

http://127.0.0.1:8000/

Have fun!!