~dylanmccall/harvest/gsoc-client-stuff

180.2.7 by Daniel Holbach
make toolbar optional, add local_settings.py.sample, update instructions
1
1. sudo apt-get install python-django python-launchpadlib python-django-openid-auth bzr 
2
3
---
4
Optional for Harvest hackers:
5
  - sudo apt-get install python-django-debug-toolbar
155 by Daniel Holbach
make installation easier
6
7
---
8
Optional for postgres usage:
9
  - sudo apt-get install postgresql-8.3 python-psycopg2
164 by Daniel Holbach
simplify installation
10
  - edit local_settings.py and set DATABASE_USER, DATABASE_PASSWORD, SECRET_KEY
155 by Daniel Holbach
make installation easier
11
  - Not sure if necessary:
12
    - sudo passwd postgres
13
    change password to 'password' or whatever the password is in harvest/settings.py
14
    - sudo -u postgres psql template1
15
    ALTER USER postgres WITH ENCRYPTED PASSWORD 'password';
16
    - sudo -u postgres createdb -O postgres harvest
17
---
18
148 by Daniel Holbach
merge Vikram's changes to the INSTALL file
19
165 by Daniel Holbach
update instructions
20
2.
21
 - cd harvest
180.2.8 by Daniel Holbach
add -i to cp call
22
 - cp -i local_settings.py.sample local_settings.py
155 by Daniel Holbach
make installation easier
23
 - ./manage.py syncdb
24
 - ./manage.py init-harvest
170 by Daniel Holbach
add 'update' command to make things easier
25
 - ./manage.py update
155 by Daniel Holbach
make installation easier
26
 - ./manage.py runserver