commit 3ff0ef86576a4aa555aaabbab0955bb21a5e884e parent 3ab6654bbb944dd86ebe840ad4b0c3e3f2d3c829 Author: Matyja Lukas Adam <lukas.matyja@students.bfh.ch> Date: Thu, 20 Jun 2024 16:11:36 +0200 update README Diffstat:
| M | README | | | 44 | +++++++++++++++++++++++++++++++++++++++----- |
1 file changed, 39 insertions(+), 5 deletions(-)
diff --git a/README b/README @@ -42,7 +42,7 @@ Dependencies: These are the direct dependencies for running a Taler donau: -- GNUnet >= 0.16.0 +- GNUnet >= 0.19.0 - GNU libmicrohttpd >= 0.9.71 - PostgreSQL >= 13.0 @@ -86,9 +86,43 @@ src/curl/ Getting Started =============== -Please follow the donau manual you can view after -installing using +For Debian: -$ info taler-donau +install depencendcies: -or by visiting https://docs.taler.net/. +sudo apt install autoconf automake autopoint debhelper-compat gettext libbluetooth-dev libcurl4-gnutls-dev libextractor-dev libgcrypt20-dev libgnutls28-dev libidn2-dev libjansson-dev libltdl-dev libmicrohttpd-dev libogg-dev libopus-dev libpq-dev libpulse-dev libsodium-dev libsqlite3-dev libunistring-dev libzbar-dev miniupnpc net-tools po-debconf python3-dev texinfo zlib1g-dev libjose-dev librec1 recutils python3-sphinx-book-theme python3-msmb-theme + +install GNUnet: + +git clone https://git.gnunet.org/gnunet.git +cd gnunet +./bootstrap +./configure +make -j 4 +sudo make install + +install exchange: + +git clone https://git.taler.net/exchange.git +cd exchange +./bootstrap +./configure +make -j 4 +sudo make install + +create psql database 'donaucheck': + +systemctl status postgresql +systemctl start postgresql +sudo su - postgres +psql +create user #hostname; +DROP DATABASE donaucheck; +create database donaucheck with owner #hostname; + +install donau: + +./bootstrap +./configure +make +sudo make install