From 47adf02f389d4b0a5a0c21323dd2b2f1ad9a393a Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Sat, 14 Sep 2019 19:22:24 +0200 Subject: docs (wallet, nfc) --- taler-wallet.rst | 74 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 taler-wallet.rst (limited to 'taler-wallet.rst') diff --git a/taler-wallet.rst b/taler-wallet.rst new file mode 100644 index 00000000..50bf0ef9 --- /dev/null +++ b/taler-wallet.rst @@ -0,0 +1,74 @@ +GNU Taler Wallet Manual +####################### + +The GNU Taler wallet allows customers to withdraw and spend digital cash. + +.. _command-line-wallet: + +Command-line Wallet +=================== + +The command-line wallet is used primarily for testing by developers. + +Building from source +-------------------- + +.. code-block:: sh + + $ git clone https://git.taler.net/wallet-core.git + $ cd wallet-core + $ ./configure --prefix=$INSTALL_PREFIX + $ make && make install + +The wallet command-line interface should then be available as ``taler-wallet-cli`` under ``$INSTALL_PREFIX/bin``. + +Installation via NPM +-------------------- + +The wallet can also obtained via NPM, the Node Package Manager. + +To install the wallet as a global package, run: + +.. code-block:: sh + + $ npm install -g taler-wallet + # check if installation was successful + $ taler-wallet-cli --version + +To install the wallet only for your user, run: + +.. code-block:: sh + + $ npm install -g --prefix=$HOME/local taler-wallet + # check if installation was successful + $ taler-wallet-cli --version + # If this fails, make sure that $HOME/local/bin is in your $PATH + +To use the wallet as a library in your own project, run: + +.. code-block:: sh + + $ npm install taler-wallet + + +WebExtension Wallet +=================== + +Building from source +-------------------- + +.. code-block:: sh + + $ git clone https://git.taler.net/wallet-core.git + $ cd wallet-core + $ ./configure + $ make webex-stable + # Packaged extension now available as: + # dist/taler-wallet-$VERSION.zip + + +Android Wallet +============== + +*TODO* + -- cgit v1.2.3