aboutsummaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
Diffstat (limited to 'README')
-rw-r--r--README11
1 files changed, 5 insertions, 6 deletions
diff --git a/README b/README
index ca3b5e1..bb30a5d 100644
--- a/README
+++ b/README
@@ -8,21 +8,21 @@ Installation
8 8
9Install dependencies:: 9Install dependencies::
10 10
11 $ python bootstrap.py --distribute 11 $ python setup.py install
12 $ ./bin/buildout
13 12
14Initial configuration 13Initial configuration
15--------------------- 14---------------------
16:: 15::
17 16
18 $ $EDITOR chishop/settings.py 17 $ $EDITOR chishop/settings.py
19 $ ./bin/django syncdb 18 $ export DJANGO_SETTINGS_FILE="chishop.settings"
19 $ django-admin.py syncdb
20 20
21Run the PyPI server 21Run the PyPI server
22------------------- 22-------------------
23:: 23::
24 24
25 $ ./bin/django runserver 25 $ django-admin.py runserver
26 26
27Please note that ``chishop/media/dists`` has to be writable by the 27Please note that ``chishop/media/dists`` has to be writable by the
28user the web-server is running as. 28user the web-server is running as.
@@ -31,8 +31,7 @@ In production
31------------- 31-------------
32 32
33You may want to copy the file ``chishop/production_example.py`` and modify 33You may want to copy the file ``chishop/production_example.py`` and modify
34for use as your production settings; you will also need to modify 34for use as your production settings.
35``bin/django.wsgi`` to refer to your production settings.
36 35
37Using Setuptools 36Using Setuptools
38================ 37================