comparison README.md @ 1660:75a74f7045b4

Merge branch 'master' into release-2.5 Conflicts: common/src/main/java/digilib/conf/DigilibConfiguration.java
author Robert Casties <r0bcas7@gmail.com>
date Tue, 21 Nov 2017 15:18:31 +0100
parents 28df291d4e26
children a243eb5cc480
comparison
equal deleted inserted replaced
1638:dc440131299b 1660:75a74f7045b4
26 the [Bibliotheca Hertziana](http://www.biblhertz.it), 26 the [Bibliotheca Hertziana](http://www.biblhertz.it),
27 the [University of Bern](http://philoscience.unibe.ch) and others. 27 the [University of Bern](http://philoscience.unibe.ch) and others.
28 28
29 ## Where can I get digilib? 29 ## Where can I get digilib?
30 30
31 `digilib` source code, binaries and documentation can be found on the 31 * [Source code](https://github.com/robcast/digilib)
32 [digilib project pages](https://sourceforge.net/projects/digilib/) 32 * [Issue tracker](https://github.com/robcast/digilib/issues)
33 on [SourceForge](https://sourceforge.net/):
34
35 * [Source code](https://sourceforge.net/p/digilib/code/ci/default/tree/)
36 * Daily built [WAR files](https://it-dev.mpiwg-berlin.mpg.de/downloads/digilib/daily-build/) 33 * Daily built [WAR files](https://it-dev.mpiwg-berlin.mpg.de/downloads/digilib/daily-build/)
37 * Daily built [Javadoc](https://it-dev.mpiwg-berlin.mpg.de/downloads/digilib/daily-build/javadoc/) 34 * Daily built [Javadoc](https://it-dev.mpiwg-berlin.mpg.de/downloads/digilib/daily-build/javadoc/)
38 * [Maven repository](http://it-dev.mpiwg-berlin.mpg.de/maven-repo/) 35 * [Maven repository](http://it-dev.mpiwg-berlin.mpg.de/maven-repo/)
36
37 `digilib` documentation can be found on the
38 [digilib documentation pages](https://robcast.github.io/digilib/) on GitHub
39 or on [SourceForge](http://digilib.sourceforge.net).
40
41 ## How do I run digilib?
42
43 Requirements:
44 * [git](https://git-scm.com/)
45 * [Java JDK](http://www.oracle.com/technetwork/java/javase/downloads/index.html) version 7 or later
46 * [Maven](https://maven.apache.org/) version 3 or later
47
48 Build:
49 1. Clone the digilib repository
50
51 `git clone https://github.com/robcast/digilib.git`
52
53 2. Change to the repository
54
55 `cd digilib`
56
57 3. build and run the webapp in the embedded Jetty runtime for development
58
59 `mvn jetty:run-exploded --projects webapp`
60
61 and watch digilib at http://localhost:8080/digilib/digilib.html
62
63 or follow the build and install instructions on the [documentation pages](https://robcast.github.io/digilib/).