Return paths shared to '*' in shared lists (in modular_alchemy backends).
[pithos] / README
1 Documentation
2 -------------
3
4 To build the documentation you need to have Sphinx installed:
5 http://sphinx.pocoo.org/
6
7 Run:
8     python setup.py build_sphinx
9
10 The documentation will be built in the docs/build/html directory.
11
12 Also run:
13     python setup.py build_sphinx -b text
14
15 Then find the plain text version of the docs in docs/build/text.
16
17 Running the server
18 ------------------
19
20 Enter the pithos dir, copy settings.py.dist to settings.py and change the SECRET_KEY inside.
21
22 Then run:
23     python manage.py syncdb
24     python manage.py loaddata aai/fixtures/auth_test_data.json (to load sample users)
25     python manage.py runserver
26
27 This server is useful during development, but should not be used for deployment.