Ignore:
Timestamp:
19 Feb 2017, 10:52:16 (8 years ago)
Author:
Henrik Bettermann
Message:

Update README.txt.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/kofacustom.sampleuni/trunk/README.txt

    r11688 r14560  
    1 waeup.sampleuni
    2 ***************
     1WAeUP.Sampleuni
    32
    4 `waeup.sampleuni` is a Python package providing a student information
    5 portal based on WAeUP Kofa.
     3###############
    64
    7 This is a skelton package which can be used to create customized version of Kofa.
     5`waeup.sampleuni` is a Python package (in the following referred to as
     6Sampleuni) providing a student information portal based on WAeUP.Kofa.
     7Sampleuni is a skelton package which can be used to create a customized
     8version of Kofa.
    89
    910For generic install instructions please see
     
    1112  http://kofa-doc.waeup.org/userdocs/install.html
    1213
    13 Repository
    14 ==========
    1514
    16 The Subversion_ repository location of this package is
     15Quick Install on Ubuntu 14.04 or 16.04
     16**************************************
    1717
    18   https://svn.waeup.org/repos/main/waeup.sampleuni/
     18If you want to install Sampleuni on a running Ubuntu system, the following quick
     19steps might be sufficient::
    1920
    20 .. _Subversion: http://subversion.apache.org/
     21  ## install neccessary system packages as superuser
     22  $ sudo apt-get update && apt-get install -y  # update system
     23  $ sudo apt-get install python2.7-dev libxml2-dev libxslt1-dev zlib1g-dev python-virtualenv libssl-dev libffi-dev libjpeg-dev libfreetype6-dev libtiff-dev libopenjpeg-dev
     24  $ sudo ln -s /usr/include/freetype2 /usr/include/freetype2/freetype
     25
     26  ## unpack sources as regular user (probably already done if you
     27  ## read this README)
     28  $ tar xzf waeup.sampleuni
     29  $ cd waeup.sampleuni
     30
     31  ## create python sandbox and build kofa
     32  $ virtualenv py27
     33  $ source py27/bin/activate
     34  $ pip install --upgrade pip
     35  $ python bootstrap.py
     36  $ ./bin/buildout
     37
     38To run Sampleuni, now do::
     39
     40  ## startup Kofa in foreground (recommended for first start)
     41  $ ./bin/kofactl fg
     42  ## press CTRL-D to stop the kofa server
     43
     44  ## startup Kofa in background
     45  $ ./bin/kofactl start
     46  $ ./bin/kofactl status  # check status, running or not
     47  $ ./bin/kofactl stop    # stop running instance (also 'restart' possible)
     48
     49When Sampleuni is running, you can access the portal on port 8080. Open
     50
     51  http://localhost:8080/
     52
     53and enter the credentials (username 'grok', password 'grok' by
     54default) and name and add a `University`.
     55
     56Congratulations, you got Sampleuni running.
Note: See TracChangeset for help on using the changeset viewer.