Dependencies:
- play-framework 2.3.9
- a hibernate compatible database (the following sections will use mysql)
- JDK 8
- Install the play framework as described under http://www.playframework.com/documentation/2.3.x/Installing.
- Install mysql and setup a database and a user for the application.
- git-clone the repository.
git@github.com:cloudiator/colosseum.git
- Create a configuration file like below which will hold your database configuration, e.g. dev.conf.
include "application.conf"
# Secret key
# ~~~~~
# The secret key is used to secure cryptographics functions.
# If you deploy your application to several instances be sure to use the same key!
application.secret="A_VERY_SECRET_KEY"
# Database configuration
# ~~~~~
db.default.driver=org.mariadb.jdbc.Driver
db.default.url="mysql://dbUser:dbPassword@localhost/dbName"
- Switch to the root of your clone and run
activator -Dconfig.file=/path/to/your/config.conf run
- Play starts the application and the server is available at http://localhost:9000
- Follow steps 1-4 of the Installation guide above.
- Run "activator clean dist" to build the project.
- Unzip the dist file at target/universal/colosseum-{version}.zip
- Run the application
bin/colosseum -Dconfig.file=/path/to/your/config.conf
- Colloseum should be available at localhost:9000
If you access the frontend at http://localhost:9000/login you will be asked to provide a password.
A default user is available:
username: john.doe@example.com password: admin tenant: admin
Documentation can be found here
Daniel Baur (University of Ulm) daniel.baur(at)uni-ulm.de