commit b06b6631c075fe1c48c79b7b3d3172c0ec52098b
parent bd54f98da712fc16e2366948a9da9199018ae51b
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date: Tue, 8 Oct 2019 13:43:41 +0200
readme for modules
Diffstat:
4 files changed, 42 insertions(+), 22 deletions(-)
diff --git a/README b/README
@@ -1,21 +0,0 @@
-Description
-===========
-
-The Libeufin Sandbox aims at implementing the server side of multiple
-banking protocols currently used in the European Union. Notably, the
-EBICS, FinTS, and the major protocols that banks will employ to respect
-the PSD2 regulation: https://ec.europa.eu/info/law/payment-services-psd-2-directive-eu-2015-2366_en
-
-
-Running the sandbox
-===================
-
-Run the sandbox with the following command
-
-$ cd <this repository>
-$ ./gradlew run --console=plain
-
-Documentation
-=============
-
-See https://docs.libeufin.tech/ for the documentation.
diff --git a/build.gradle b/build.gradle
@@ -30,7 +30,7 @@ subprojects {
apply plugin : "application"
apply plugin : "java"
-
+
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
implementation "io.ktor:ktor-gson:1.1.5"
diff --git a/nexus/README b/nexus/README
@@ -0,0 +1,20 @@
+Description
+===========
+
+The Libeufin Nexus implements a JSON API to let customers manages their
+bank accounts. The Nexus will then convert those requests sent by customers
+into one of more technical protocols actually implemented by banks; notably,
+EBICS and FinTS.
+
+Running the sandbox
+===================
+
+Run the Nexus with the following command
+
+$ cd <this repository>
+$ ./gradlew run --console=plain -p nexus
+
+Documentation
+=============
+
+See https://docs.libeufin.tech/ for the documentation.
diff --git a/sandbox/README b/sandbox/README
@@ -0,0 +1,21 @@
+Description
+===========
+
+The Libeufin Sandbox aims at implementing the server side of multiple
+banking protocols currently used in the European Union. Notably, the
+EBICS, FinTS, and the major protocols that banks will employ to respect
+the PSD2 regulation: https://ec.europa.eu/info/law/payment-services-psd-2-directive-eu-2015-2366_en
+
+
+Running the sandbox
+===================
+
+Run the sandbox with the following command
+
+$ cd <this repository>
+$ ./gradlew run --console=plain -p sandbox
+
+Documentation
+=============
+
+See https://docs.libeufin.tech/ for the documentation.