Browse Source

Merge branch 'main' into sqlite

sqlite
Stephan Richter 3 months ago
parent
commit
7e60c52f45
  1. 13
      Readme.md
  2. 14
      docker/compose.yml

13
Readme.md

@ -27,6 +27,10 @@ Leider werden durch die SQLite-Bibliothek weitere Transitive Abhängigkeiten ein @@ -27,6 +27,10 @@ Leider werden durch die SQLite-Bibliothek weitere Transitive Abhängigkeiten ein
Dies ist ein Gradle-Project. Um es zu compilieren brauchen Sie ein aktuelles Java-Development-Kit.
Das Projekt kann durch Aufruf von `./gradlew build` in einem Terminal innerhalb des Wurzelverzeichnisses gebaut werden.
## Datenbank-Unterstützung
Um das Projekt klein zu halten ist im _main_-Branch kein Datenbank-Support eingebaut.
Es gibt aber einen separaten Branch, der die Benutzung von SQLite-Datenbanken untersützt: [sqlite]
</td><td>
This aims to be a [specification] compliant OpenID connect provider with minimal footprint.
@ -46,11 +50,16 @@ Unfortunately the SQLite library also draws in some additional dependencies, @@ -46,11 +50,16 @@ Unfortunately the SQLite library also draws in some additional dependencies,
## build
This is a gradle project. To compile it, you should have a recent version of a Java Development Kit installed.
Build the project by launching `./gradlew build` in a terminal while being in the root folder of the project.
Build the roject by launching `./gradlew build` in a terminal while being in the root folder of the project.
## database support
In order to achieve a minimal footprint, no database support is incorporated in the main branch.
However, there is SQLite support in a separate branch: [sqlite]
</td>
</tr>
</table>
[main]: ../main
[specification]: https://openid.net/specs/openid-connect-core-1_0.html
[specification]: https://openid.net/specs/openid-connect-core-1_0.html

14
docker/compose.yml

@ -1,14 +0,0 @@ @@ -1,14 +0,0 @@
name: lightoidc
services:
server:
container_name: lightOIDC
environment:
CATALINA_OPTS: -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=0.0.0.0:8000
hostname: guacamole
image: tomcat:9.0-jdk21-openjdk
ports:
- 8080:8080
- 8000:8000
volumes:
- ../de.srsoftware.oidc.light/build/libs/oidc.war:/usr/local/tomcat/webapps/ROOT.war
Loading…
Cancel
Save