Merge lp:~cjohnston/summit/docs into lp:summit

Proposed by Chris Johnston
Status: Merged
Merged at revision: 22
Proposed branch: lp:~cjohnston/summit/docs
Merge into: lp:summit
Diff against target: 50 lines (+20/-16)
2 files modified
INSTALL (+12/-8)
requirements.txt (+8/-8)
To merge this branch: bzr merge lp:~cjohnston/summit/docs
Reviewer Review Type Date Requested Status
Dave Walker (community) Approve
Review via email: mp+35973@code.launchpad.net

Description of the change

Adds info to the install file and adds package names to requirements.txt

To post a comment you must log in.
Revision history for this message
Dave Walker (davewalker) wrote :

Thanks for improving on that Chris! :)

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'INSTALL'
2--- INSTALL 2010-09-14 15:09:34 +0000
3+++ INSTALL 2010-09-20 00:45:56 +0000
4@@ -1,12 +1,16 @@
5-# in the project directory.
6-bzr branch lp:ubuntu-website/light_django_theme ubuntu_website
7-
8-# Create settings file
9-cp summit/local_settings.py.sample summit/local_settings.py
10-
11-Add database details to local_settings.py, and other relevant values
12-
13 Generate a SECRET_KEY
14 >>> import string
15 >>> from random import choice
16 >>> print ''.join([choice(string.letters + string.digits + string.punctuation) for i in range(50)])
17+
18+
19+To run summit:
20+
21+ - sudo apt-get install python-django python-django-openid-auth python-django-south python-beautifulsoup python-psycopg2 python-openid python-tz python-simplejson
22+ - cd summit
23+ - cp local_settings.py.sample local_settings.py
24+ # edit local_settings.py and set DATABASE_USER, DATABASE_PASSWORD, SECRET_KEY
25+ - bzr branch lp:ubuntu-website/light_django_theme ubuntu_website
26+ - ./manage.py syncdb
27+ - ./manage.py migrate
28+ - ./manage.py runserver
29
30=== modified file 'requirements.txt'
31--- requirements.txt 2010-03-05 10:33:36 +0000
32+++ requirements.txt 2010-09-20 00:45:56 +0000
33@@ -1,9 +1,9 @@
34-BeautifulSoup==3.1.0.1
35-Django==1.0.2-final
36-South==0.6.2
37-django-openid-auth==0.2
38-psycopg2==2.0.14
39-python-openid==2.2.4
40-pytz==2010b
41-simplejson==2.0.9
42+BeautifulSoup(python-beautifulsoup)==3.1.0.1
43+Django(python-django)==1.0.2-final
44+South(python-django-south)==0.6.2
45+django-openid-auth(python-django-openid-auth)==0.2
46+psycopg2(python-psycopg2)==2.0.14
47+python-openid(python-openid)==2.2.4
48+pytz(python-tz)==2010b
49+simplejson(python-simplejson)==2.0.9
50 wsgiref==0.1.2

Subscribers

People subscribed via source and target branches