Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
fivethreeo committed Sep 20, 2013
1 parent 13b784c commit 62c6c25
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions README.rst
Expand Up @@ -7,14 +7,31 @@ A django shop example
How to run
----------

Linux
======

::

git clone https://github.com/fivethreeo/django-shop-example.git
cd django-shop-example
virtualenv shop_env # --system-site-pakages for PIL on windows
virtualenv shop_env
source ./shop_env/bin/activate
pip install -r requirements.txt
pip install PIL # if you did not use --system-site-pakages on Linux
pip install PIL
python runtestserver.py

Windows
=======

First make sure PIL is available. Then:

::

git clone https://github.com/fivethreeo/django-shop-example.git
cd django-shop-example
virtualenv shop_env --system-site-pakages
shop_env\Scripts\activate.bat
pip install -r requirements.txt
python runtestserver.py
Point your browser to http://127.0.0.1:8080/

0 comments on commit 62c6c25

Please sign in to comment.