Changeset 14560
- Timestamp:
- 19 Feb 2017, 10:52:16 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.sampleuni/trunk/README.txt
r11688 r14560 1 waeup.sampleuni 2 *************** 1 WAeUP.Sampleuni 3 2 4 `waeup.sampleuni` is a Python package providing a student information 5 portal based on WAeUP Kofa. 3 ############### 6 4 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 6 Sampleuni) providing a student information portal based on WAeUP.Kofa. 7 Sampleuni is a skelton package which can be used to create a customized 8 version of Kofa. 8 9 9 10 For generic install instructions please see … … 11 12 http://kofa-doc.waeup.org/userdocs/install.html 12 13 13 Repository14 ==========15 14 16 The Subversion_ repository location of this package is 15 Quick Install on Ubuntu 14.04 or 16.04 16 ************************************** 17 17 18 https://svn.waeup.org/repos/main/waeup.sampleuni/ 18 If you want to install Sampleuni on a running Ubuntu system, the following quick 19 steps might be sufficient:: 19 20 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 38 To 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 49 When Sampleuni is running, you can access the portal on port 8080. Open 50 51 http://localhost:8080/ 52 53 and enter the credentials (username 'grok', password 'grok' by 54 default) and name and add a `University`. 55 56 Congratulations, you got Sampleuni running.
Note: See TracChangeset for help on using the changeset viewer.