Installation instructions ------------------------- First, initialize the configure script. $ ./bootstrap Then, choose the installation prefix $ ./configure --prefix= Last, install $ make install Optionally, to run tests: $ make check Configuration options. ---------------------- The following configuration excerpt shows all the options accepted by the donations shop. $ cat ~/.config/taler.conf [frontends] # Merchant backend to use. backend = http://backend.test.taler.net/ # This value will fill: "Authorization: ApiKey " backend_apikey = sandbox [donations] # The following three options configure the way the donations # shop will serve UWSGI requests via unix domain sockets. uwsgi_serve = unix uwsgi_unixpath = /path/to/donations.uwsgi uwsgi_unixpath_mode = 660 # The following option picks the merchant instance that # will be represented by the running donations shop. instance = default Running instructions -------------------- The following command launches the donations shop to serve HTTP requests on the port . $ taler-merchant-donations serve-http -p The following command launches the donations shop to serve UWSGI requests via a unix domain socket. $ taler-merchant-donations serve-uwsgi Finally, get a help message with the following command $ taler-merchant-donations --help