commit b49b17513151775e9895c0868d87c6619f90c7e5
parent aaa7adad10680c472923786e490c829a55a70c90
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date: Thu, 12 Sep 2019 22:21:08 +0200
readme
Diffstat:
| A | README | | | 31 | +++++++++++++++++++++++++++++++ |
| D | RUN | | | 19 | ------------------- |
2 files changed, 31 insertions(+), 19 deletions(-)
diff --git a/README b/README
@@ -0,0 +1,31 @@
+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
+
+
+Building and running the sandbox.
+=================================
+
+The sandox must be exported as JAR in order to be run.
+The following command exports the JAR in GNU/Linux systems.
+
+$ cd <this repository>
+$ ./gradlew jar
+
+If the previous step worked, then a new JAR file should
+be located under <this repository>/build/libs/sandbox-$VERSION.jar,
+where $VERSION reflects the value of the 'version' global
+variable from <this repository>/build.gradle.
+
+The following command runs the sandbox:
+
+$ java -jar <this repository>/build/libs/sandbox-$VERSION.jar
+
+MS Windows users.
+=================
+The steps to follow are the same as in GNU/Linux systems, except
+that the command "gradlew.bat jar" would produce the JAR file.
diff --git a/RUN b/RUN
@@ -1,19 +0,0 @@
-The sandox must be exported as JAR in order to be run.
-The following command exports the JAR in GNU/Linux systems.
-
-$ cd <this repository>
-$ ./gradlew jar
-
-If the previous step worked, then a new JAR file should
-be located under <this repository>/build/libs/sandbox-$VERSION.jar,
-where $VERSION reflects the value of the 'version' global
-variable from <this repository>/build.gradle.
-
-The following command runs the sandbox:
-
-$ java -jar <this repository>/build/libs/sandbox-$VERSION.jar
-
-MS Windows users.
-=================
-The steps to follow are the same as in GNU/Linux systems, except
-that the command "gradlew.bat jar" would produce the JAR file.