comparison docs/contributing.rst @ 5755:250f8150c4bb stable

docs: suggest using pip instead of setup.py develop
author Andrew Shadura <andrew@shadura.me>
date Sat, 12 Mar 2016 14:35:43 +0100
parents 8c234ae2c258
children d5e16407bdbb cc21a2b86a30
comparison
equal deleted inserted replaced
5748:7ef7536bf8e7 5755:250f8150c4bb
33 hg clone https://kallithea-scm.org/repos/kallithea 33 hg clone https://kallithea-scm.org/repos/kallithea
34 cd kallithea 34 cd kallithea
35 virtualenv ../kallithea-venv 35 virtualenv ../kallithea-venv
36 source ../kallithea-venv/bin/activate 36 source ../kallithea-venv/bin/activate
37 pip install --upgrade pip setuptools 37 pip install --upgrade pip setuptools
38 python2 setup.py develop 38 pip install -e .
39 paster make-config Kallithea my.ini 39 paster make-config Kallithea my.ini
40 paster setup-db my.ini --user=user --email=user@example.com --password=password --repos=/tmp 40 paster setup-db my.ini --user=user --email=user@example.com --password=password --repos=/tmp
41 paster serve my.ini --reload & 41 paster serve my.ini --reload &
42 firefox http://127.0.0.1:5000/ 42 firefox http://127.0.0.1:5000/
43 43