From 2c4a8f6658ee05b8b06c73b8b66293b8fc31d138 Mon Sep 17 00:00:00 2001 From: Ben Adida Date: Sun, 2 Dec 2012 12:10:07 -0800 Subject: [PATCH] Update INSTALL.md formatting --- INSTALL.md | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index e8feac29a..b710ebdb0 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -1,4 +1,3 @@ - * install PostgreSQL 8.3+ * make sure you have virtualenv installed: @@ -10,21 +9,30 @@ http://www.virtualenv.org/en/latest/ * create a virtualenv: - virtualenv venv +``` +virtualenv venv +``` * activate virtual environment - source venv/bin/activate +``` +source venv/bin/activate +```` * install requirements - pip install -r requirements.txt +``` +pip install -r requirements.txt +``` -* reset +* reset database - ./reset.sh +``` +./reset.sh +``` * start server - python manage.py runserver - +``` +python manage.py runserver +```