Skip to content

httcev/kola

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

KOLA

Project page: http://www.httc.de/projekte/abgeschlossene-projekte/kola-kompetenzorientiertes-lernen-im-arbeitsprozess-mit-digitalen-medien

Releases
App https://play.google.com/store/apps/details?id=de.httc.kola

Building the server platform

Requirements

Prerequisites

Building the platform

$ cd platform
$ mvn package

The web application's war file will then be located in the target directory, ready to be deployed to an application server, e.g. Apache Tomcat.

Server configuration

Create a file named kola-platform-config.properties in your application server's directory. You can configure/override these settings:

grails.serverURL = <FILL-IN-YOUR-BASE-URL-HERE>
de.httc.plugin.repository.directory = ./repo
elasticSearch.index.name = kola-production
dataSource.url = jdbc:h2:./data/db/kola;MVCC=TRUE;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE;TRACE_LEVEL_FILE=0

Building the App

Requirements

$ cd app/kola
$ npm install
$ bower install
$ ionic build [android | ios]

To run the app in dev mode:

$ ionic serve --lab