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
=== modified file 'INSTALL'
--- INSTALL 2010-09-14 15:09:34 +0000
+++ INSTALL 2010-09-20 00:45:56 +0000
@@ -1,12 +1,16 @@
1# in the project directory.
2bzr branch lp:ubuntu-website/light_django_theme ubuntu_website
3
4# Create settings file
5cp summit/local_settings.py.sample summit/local_settings.py
6
7Add database details to local_settings.py, and other relevant values
8
9Generate a SECRET_KEY1Generate a SECRET_KEY
10>>> import string2>>> import string
11>>> from random import choice3>>> from random import choice
12>>> print ''.join([choice(string.letters + string.digits + string.punctuation) for i in range(50)]) 4>>> print ''.join([choice(string.letters + string.digits + string.punctuation) for i in range(50)])
5
6
7To run summit:
8
9 - sudo apt-get install python-django python-django-openid-auth python-django-south python-beautifulsoup python-psycopg2 python-openid python-tz python-simplejson
10 - cd summit
11 - cp local_settings.py.sample local_settings.py
12 # edit local_settings.py and set DATABASE_USER, DATABASE_PASSWORD, SECRET_KEY
13 - bzr branch lp:ubuntu-website/light_django_theme ubuntu_website
14 - ./manage.py syncdb
15 - ./manage.py migrate
16 - ./manage.py runserver
1317
=== modified file 'requirements.txt'
--- requirements.txt 2010-03-05 10:33:36 +0000
+++ requirements.txt 2010-09-20 00:45:56 +0000
@@ -1,9 +1,9 @@
1BeautifulSoup==3.1.0.11BeautifulSoup(python-beautifulsoup)==3.1.0.1
2Django==1.0.2-final2Django(python-django)==1.0.2-final
3South==0.6.23South(python-django-south)==0.6.2
4django-openid-auth==0.24django-openid-auth(python-django-openid-auth)==0.2
5psycopg2==2.0.145psycopg2(python-psycopg2)==2.0.14
6python-openid==2.2.46python-openid(python-openid)==2.2.4
7pytz==2010b7pytz(python-tz)==2010b
8simplejson==2.0.98simplejson(python-simplejson)==2.0.9
9wsgiref==0.1.29wsgiref==0.1.2

Subscribers

People subscribed via source and target branches