~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to doc/setup/install_proc.txt

ivle.config.Config: __init__ now takes a 'blank' argument, which allows it to
    create a blank config without trying to load an existing one.
setup.configure: Now instantiates an ivle.config.Config(blank=True), rather
    than a generic configobj.ConfigObj.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
sudo apt-get install rsync subversion build-essential debootstrap       \
23
23
                     apache2 libapache2-mod-python libapache2-svn       \
24
24
                     python-svn python-cjson python-genshi              \
25
 
                     python-configobj postgresql python-routes          \
 
25
                     python-configobj                                   \
 
26
                     postgresql php5 php5-pgsql python-routes           \
26
27
                     python-docutils python-epydoc                      \
27
28
                     python-storm python-psycopg2
28
29
 
46
47
sudo -u postgres psql -d ivle < userdb/users.sql
47
48
 
48
49
# Set up IVLE
 
50
./setup.py config
 
51
 
49
52
./setup.py build
50
53
sudo ./setup.py install
51
54
 
52
 
sudo ivle-config
53
 
sudo ivle-createdatadirs
54
 
 
55
55
# Create the jail. The mirror option is optional.
56
56
sudo ivle-buildjail -r -m http://url.to.archive/mirror
57
57
 
96
96
 
97
97
# To run it at boot time:
98
98
sudo update-rc.d usrmgt-server defaults 99  # create symlinks in /etc/rc*.d
 
99
 
 
100
##########################################################################
 
101
# Setting up phpBB Forum in IVLE
 
102
##########################################################################
 
103
# This should all be run from the SVN directory
 
104
 
 
105
# Create a postgres database
 
106
# (only need the first line if it was previously created and is now changed)
 
107
sudo -u postgres dropdb ivle_forum
 
108
sudo -u postgres createdb ivle_forum
 
109
sudo -u postgres psql -d ivle_forum < userdb/forum_schema.sql
 
110
sudo -u postgres psql -d ivle_forum < userdb/forum_data.sql