summaryrefslogtreecommitdiff
path: root/README
blob: 31e2dc6474578b227482b6b0697401e2cd9f7e66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
Installing LibEuFin
===================

Although different versions of Java may support this project,
the following steps were verified with Java 17.0.6.

The following dependencies (names match Debian packages) should
be available before trying the installation:

- make
- python3-venv
- openjdk-17-jre-headless

Run the following steps to install LibEuFin:

$ ./bootstrap
$ ./configure --prefix=$PFX
$ make install

If the previous step succeeded, libeufin-nexus and a command line
client (libeufin-cli) should be found under $PFX/bin.  Additionally,
the libeufin-bank command used for testing should be found under
$PFX/bin as well.

Running tests
=============

Tests need a PostgreSQL database called "libeufincheck".
If the database setup is correct and LibEuFin is installed,
the following command runs all the test cases:

  $ make check

Launching LibEuFin
==================

Launch Nexus:

$ libeufin-nexus serve --with-db=jdbc:postgres://localhost:5433/$DB_NAME?user=foo&password=bar

More instructions about configuring and setting Libeufin
are available at this link:

https://docs.taler.net/libeufin/nexus-tutorial.html

Exporting a dist-file
=====================

$ ./bootstrap
$ make dist

The TGZ file should be found at: build/distributions/libeufin-$VERSION-sources.tar.gz

Exporting an archive with the three executables
===============================================

Such archive contains the compiled Bank and Nexus,
and the CLI script.

$ ./bootstrap # Needed to silence 'GNU make'
$ make exec-arch

Alternatively, the same archive is produced by:

$ ./gradlew execArch

The archive should be found at: build/distributions/libeufin-$VERSION.zip

After extracting the compressed files, run the three
executable found under the "bin/" folder.

User interface
==============

This repository does not ship any UI, rather it downloads
one from the following project along the "make deb" target:
https://git.taler.net/wallet-core.git/tree/packages/demobank-ui

This way, the libeufin-bank Debian package provides one
self-contained solution including Nginx, LibEuFin Bank,
and the UI.

Note: the UI an independent Web app that could even be served
from a different host than the one running the backend.