A place to collect useful information for developers that doesn't really fit elsewhere.
👉 See CONTRIBUTING.md for how to get started participating in this project.
For a complete development environment you need a local JoinMarket instance that the web UI can interact with. We provide a regtest environment that should give you everything needed to get started developing with JoinMarket. You can find details here: docker/regtest/readme.md.
We use Create React App's default ESLint integration.
You'll see linting issues in the console when running the app with npm run dev
.
Pull request builds will fail if ESLint is not happy with the code.
We use the Prettier code formatter to keep a consistent code style. Pull request builds will fail if Prettier is not happy with the code. There's a couple of options on how to setup Prettier so that it formats your code automatically:
Running npm run format
will format the whole codebase.
Prettier has great editor integrations which will automatically format all files you touch.
You can use a pre-commit hook that will automatically format all changes before comitting them to Git. We use husky and lint-staged for that.
By default, the hook will be installed automatically as an NPM postinstall script.
If you're having issues with Husky not using the correct $PATH
, you may need to setup a ~/.huskyrc
which will let you set up your path before the hook is run.
See here for more info.
These instructions assume you want to run the web UI locally and connect it to a JoinMarket instance on your RaspiBlitz. The process should be similar for other setups. If you run the Web UI and JoinMarket on the same system, simply skip the SSH tunnel step.
To run the web UI locally you need to connect it to a running JoinMarket instance.
Install JoininBox on your RaspiBlitz:
Services > j [BTC JoinMarket+JoininBox menu]
Or follow the JoinMarket installation guide if you're on another system.
This app makes use of the JoinMarket RPC API. For this, you will need JoinMarket version 0.9.3 or higher. If needed you can upgrade JoinMarket to the latest commit via the JoininBox menu on your RaspiBlitz: Type jm
in the command line and select UPDATE > ADVANCED > JMCOMMIT
. This will install the latest development version from JoinMarket's master branch.
As the joinmarket user on your RaspiBlitz, generate a self-signed certificate for the JoinMarket API Service as described here, and put the certificate and the key in the ~/.joinmarket/ssl/
directory.
Hint: To login as the JoinMarket user, you can ssh into your RaspiBlitz, type jm
, and exit the JoininBox menu.
Create the SSL directory:
(jmvenv) joinmarket@raspberrypi:~ $ mkdir ~/.joinmarket/ssl/
Generate the certificate and associated key:
openssl req -newkey rsa:4096 -x509 -sha256 -days 3650 -nodes -out ~/.joinmarket/ssl/cert.pem -keyout ~/.joinmarket/ssl/key.pem
Hint: You don't have to enter anything meaningful, you can just hit the return key a couple of times.
Start the JoinMarket API service:
(jmvenv) joinmarket@raspberrypi:~/joinmarket-clientserver/scripts $ python jmwalletd.py
You should see the following:
2021-11-18 18:16:57,639 [INFO] Starting jmwalletd on port: 28183
2021-11-18 18:16:57,661 [INFO] Joinmarket daemon listening on port 27183
Create an SSH tunnel for the API service. On the machine where you want to run the web UI, add the following lines to your ~/.ssh/config
file:
Host raspiblitz
HostName 192.168.X.X # (IP address of your RaspiBlitz)
User admin
ForwardAgent yes
LocalForward 28183 localhost:28183
In short:
git clone https://github.com/joinmarket-webui/jam.git
cd jam/
npm install && npm run dev