aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README16
1 files changed, 6 insertions, 10 deletions
diff --git a/README b/README
index bf6511b..0773175 100644
--- a/README
+++ b/README
@@ -8,27 +8,23 @@ ChiShop/DjangoPyPI
8Installation 8Installation
9============ 9============
10 10
11First you have to install the dependencies:: 11Install dependencies::
12 12
13 $ python setup.py build 13 $ python bootstrap.py --distribute
14 # python setup.py install # (run as root) 14 $ ./bin/buildout
15 15
16Initial configuration 16Initial configuration
17--------------------- 17---------------------
18:: 18::
19 19
20 $ cd chipshop/ 20 $ $EDITOR chishop/settings.py
21 21 $ ./bin/django syncdb
22 $ $EDITOR settings.py
23
24 $ python manage.py syncdb
25 22
26Run the PyPI server 23Run the PyPI server
27------------------- 24-------------------
28:: 25::
29 26
30 $ python manage.py runserver 27 $ ./bin/django runserver
31
32 28
33Please note that ``chishop/media/dists`` has to be writable by the 29Please note that ``chishop/media/dists`` has to be writable by the
34user the web-server is running as. 30user the web-server is running as.