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