summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2020-11-16 16:51:09 +0100
committerFlorian Dold <florian@dold.me>2020-11-16 16:51:09 +0100
commitdb904be62abe41ac96a8ad6b37c631256949835e (patch)
treeffaf88c993a653a1fc733ce887ec9233272e6b90 /README
parentaf5a35def0c7e914bd733e652e2c3c759a4b7384 (diff)
downloadwallet-core-db904be62abe41ac96a8ad6b37c631256949835e.tar.gz
wallet-core-db904be62abe41ac96a8ad6b37c631256949835e.tar.bz2
wallet-core-db904be62abe41ac96a8ad6b37c631256949835e.zip
update README
Diffstat (limited to 'README')
-rw-r--r--README48
1 files changed, 28 insertions, 20 deletions
diff --git a/README b/README
index da04f7b39..7af17121a 100644
--- a/README
+++ b/README
@@ -1,45 +1,52 @@
-GNU Taler Wallet
-================
+# GNU Taler Wallet
This repository contains the implementation of a wallet for GNU Taler written
in TypeScript.
-Dependencies
-============
+## Dependencies
In order to build the GNU Taler wallet, make sure that you have Node.JS and pnpm installed.
-Installation
-============
+## Installation
-The CLI version of the wallet supports the normal GNU installation process:
+The CLI version of the wallet supports the normal GNU installation process.
- ./bootstrap && ./configure [ --prefix=$PREFIX ] && make install
+```shell
+./configure [ --prefix=$PREFIX ] && make install
+```
-
-Building the WebExtension
-=========================
+### Building the WebExtension
The WebExtension can be built via the 'webextension' make target:
- ./bootstrap && ./configure && make webextension
+```shell
+./configure && make webextension
+```
This will create the zip file with the WebExtension in the location
- packages/taler-wallet-webextension/taler-wallet-$VERSION.zip
+```
+packages/taler-wallet-webextension/taler-wallet-$VERSION.zip
+```
+
+### Compiling from Git
+If you are compiling the code from git, you have to run `./bootstrap` before
+running `./configure`.
-Integration Tests
-=================
+
+# Integration Tests
This repository comes with integration tests for GNU Taler. To run them,
install the wallet first. Then use the test runner from the
taler-integrationtests package:
- cd packages/taler-integrationtests/
- ./testrunner '*'
+```shell
+cd packages/taler-integrationtests/
+./testrunner '*'
+```
The test runner accepts a bash glob pattern as parameter. Individual tests can
be run by specifying their name.
@@ -47,6 +54,7 @@ be run by specifying their name.
To check coverage, use nyc from the root of the repository and make sure that the taler-wallet-cli
from the source tree is executed, and not the globally installed one:
- PATH="$PWD/packages/taler-wallet-cli/bin:$PATH" \
- nyc ./packages/taler-integrationtests/testrunner '*'
-
+```
+PATH="$PWD/packages/taler-wallet-cli/bin:$PATH" \
+ nyc ./packages/taler-integrationtests/testrunner '*'
+```