You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RTL/README.md

176 lines
7.6 KiB
Markdown

5 years ago
## Ride The Lightning (RTL)
![](screenshots/RTL_Home.png)
<a href="https://snyk.io/test/github/Ride-The-Lightning/RTL"><img src="https://snyk.io/test/github/Ride-The-Lightning/RTL/badge.svg" alt="Known Vulnerabilities" data-canonical-src="https://snyk.io/test/github/Ride-The-Lightning/RTL" style="max-width:100%;"></a>
5 years ago
[![license](https://img.shields.io/github/license/DAVFoundation/captain-n3m0.svg?style=flat-square)](https://github.com/DAVFoundation/captain-n3m0/blob/master/LICENSE)
5 years ago
### Stable Release: v0.5.4
5 years ago
**Intro** -- [Application Features](docs/Application_features.md) -- [Road Map](docs/Roadmap.md) -- [LND API Coverage](docs/LNDAPICoverage.md) -- [Application Configurations](docs/Application_configurations) -- [C-lightning](docs/C-Lightning-setup.md)
6 years ago
5 years ago
* [Introduction](#intro)
5 years ago
* [Architecture](#arch)
5 years ago
* [Prerequisites](#prereq)
* [Installation](#install)
* [Prep For Execution](#prep)
* [Start The Server](#start)
* [Access The Application](#access)
* [Troubleshooting](#trouble)
### <a name="intro"></a>Introduction
5 years ago
RTL is a full function, device agnostic, web user interface to help manage lightning node operations.
RTL is available on LND and C-Lightning implementations.
This page covers instructions for LND. For C-lightning, refer to [this](docs/C-Lightning-setup.md) page.
Lightning Network Daemon(LND) is an implementation of Lightning Network BOLT protocol by [Lightning Labs](https://lightning.engineering/).
6 years ago
5 years ago
Pre-requisite for running RTL is a functioning and synced LND node. You can setup your own node, by following the below guides:
* Windows/Mac users can follow Pierre Rochard's [Node Launcher](https://github.com/lightning-power-users/node-launcher)
* Linux or Raspberry Pi users can follow Stadicus's [guide](https://github.com/Stadicus/guides/blob/master/raspibolt/README.md)
6 years ago
5 years ago
For detailed screenshots and UI operation guide you can visit our [medium post](https://medium.com/@suheb.khan/how-to-ride-the-lightning-447af999dcd2)
5 years ago
5 years ago
RTL is available on the below platforms/services:
5 years ago
* [RaspiBlitz](https://github.com/rootzoll/raspiblitz)
* [Nodl](https://www.nodl.it/)
* [BTCPayserver](https://github.com/btcpayserver/btcpayserver-docker)
5 years ago
* [Blockdaemon](https://blockdaemon.com/bitcoin-lightning-protocol-details)
* [myNode](http://mynodebtc.com)
* [Lux Node](https://luxnode.io/product/lux-node/)
5 years ago
5 years ago
Docker Image: https://hub.docker.com/r/shahanafarooqui/rtl
5 years ago
### <a name="arch"></a>Architecture
5 years ago
![](screenshots/RTL-LND-Arch.png)
5 years ago
5 years ago
### <a name="prereq"></a>Prerequisites
5 years ago
* Functioning and synced LND lightning node.
* Node.js, which can be downloaded [here](https://nodejs.org/en/download/)
* On Ubuntu, `g++` is required to install the node-sass dependency. This is available in the `build-essential` package.
* The Most recent versions of node.js might give errors while installing node-sass. Use node.js LTS version 8 or 10 as a solution.
5 years ago
* Recommended Browsers: Chrome, Firefox, MS Edge
6 years ago
5 years ago
### <a name="install"></a>Installation
6 years ago
#### First time setup
* Fetch sources from RTL git repository, by executing the below on the command prompt:
5 years ago
5 years ago
`$ git clone https://github.com/Ride-The-Lightning/RTL.git`
5 years ago
* Change directory to RTL folder:
5 years ago
6 years ago
`$ cd RTL`
5 years ago
* Fetch the dependencies and build the application by running:
5 years ago
6 years ago
`$ npm install`
6 years ago
5 years ago
#### Or: Update existing build
5 years ago
```
5 years ago
$ cd RTL
5 years ago
$ git reset --hard HEAD
$ git clean -f -d
$ git pull
$ npm install
```
5 years ago
### <a name="prep"></a>Prep for Execution
5 years ago
RTL requires its own config file `RTL.conf`, to start the server and provide user authentication on the app.
6 years ago
5 years ago
*Advanced users can refer to [this page](docs/Multi-LND-Node-setup.md), for config settings required to manage multiple LND nodes*
5 years ago
* Rename `sample-RTL.conf` file to `RTL.conf`.
* Locate the complete path of the readable macroon file (admin.macroon) on your node and the lnd.conf file.
5 years ago
* Modify the `RTL.conf` file per the example file below
5 years ago
5 years ago
Example RTL.conf:
```
[Authentication]
5 years ago
macaroonPath=C:\Users\<user>\AppData\Local\Lnd\data\chain\bitcoin\testnet
nodeAuthType=CUSTOM
lndConfigPath=C:\Users\<user>\AppData\Local\Lnd\lnd.conf
rtlPass=***
[SSO]
rtlSSO=0
rtlCookiePath=C:\RTL\cookies\auth.cookie
logoutRedirectLink=/login
[Settings]
userPersona=OPERATOR
themeMode=DAY
themeColor=PURPLE
channelBackupPath=C:\Users\shaha\backup\node-0
bitcoindConfigPath=C:/Bitcoin/bitcoin.conf
enableLogging=true
5 years ago
port=3000
lndServerUrl=https://192.168.1.16:8080/v1
currencyUnit=USD
```
For details on all the configuration options refer to [this page](./docs/Application_configurations).
5 years ago
#### User Authentication on RTL
5 years ago
RTL requires the user to be authenticated by the application first, before allowing access to LND functions.
There are two options to configure authentication on RTL, depending on the `nodeAuthtype` value provided in RTL.conf.
6 years ago
5 years ago
* Option 1: `nodeAuthType=DEFAULT`; Password provided in lnd.conf for the rpc setting for bitcoind will be used for authentication.
* Option 2: `nodeAuthType=CUSTOM`; Specific password must be provided in RTL.conf (in plain text) for authentication. Password should be set with `rtlPass=<user defined>` in the [Authentication] section of RTL.conf
6 years ago
5 years ago
### <a name="start"></a>Start the Server
Run the following command:
6 years ago
5 years ago
`$ node rtl`
6 years ago
If the server started successfully, you should get the below output on the console:
5 years ago
`$ Server is up and running, please open the UI at http://localhost:3000`
6 years ago
5 years ago
#### Optional: Running RTL as a service (Rpi or Linux platform users)
In case you are running a headless Rpi or a Linux node, you can configure RTL as a service.
6 years ago
6 years ago
* Create RTL systemd unit and with the following content. Save and exit.
6 years ago
```bash
# Raspibolt RTL: systemd unit for RTL
# /etc/systemd/system/RTL.service
6 years ago
[Unit]
Description=RTL daemon
Wants=lnd.service
6 years ago
After=lnd.service
6 years ago
6 years ago
[Service]
5 years ago
ExecStart=/usr/bin/node <Full path of the RTL folder>/rtl
6 years ago
User=<user>
6 years ago
Restart=always
TimeoutSec=120
RestartSec=30
[Install]
WantedBy=multi-user.target
6 years ago
```
6 years ago
6 years ago
* enable and start RTL
5 years ago
```
$ sudo systemctl enable RTL
$ sudo systemctl start RTL
```
6 years ago
* montior the RTL log file in realtime(exit with Ctrl-C)
6 years ago
5 years ago
`$ sudo journalctl -f -u RTL`
6 years ago
5 years ago
### <a name="access"></a>Accessing the Application
5 years ago
You can access the application in multiple setups (Please make note of the 4th exception):
5 years ago
1. Same device as the server:
6 years ago
Open your browser at the following address: http://localhost:3000 to access the RTL application.
6 years ago
5 years ago
2. Remotely from another device on the same local network (home network) as the node(RTL server+LND running on the same device):
5 years ago
* Ensure that the if a firewall running on your node, it allows access on port 3000 (or the custom port configured for RTL).
* Determine the IP address of your node to access the application.
6 years ago
E.g. if the IP address of your node is 192.168.0.15 then open your browser at the following address: http://192.168.0.15:3000 to access RTL.
5 years ago
5 years ago
3. Config tweaks for running RTL server and LND on separate devices on the same network can be found [here](docs/RTL_setups.md).
5 years ago
5 years ago
4. Any Other setup: **Please be advised, if you are accessing your node remotely via RTL, its critical to encrypt the communication via use of https. You can use solutions like nginx and letsencrypt or TOR to setup secure access for RTL.**
5 years ago
- Sample SSL setup guide can be found [here](docs/RTL_SSL_setup.md)
- (For advanced users) A sample SSL guide to serve remote access over an encrypted Tor connection can be found [here](docs/RTL_TOR_setup.md)
5 years ago
5 years ago
### <a name="trouble"></a>Troubleshooting
5 years ago
In case you are running into issues with the application or if you have feedback, feel free to open issues on our github repo.
5 years ago
You can also reach out to us via twitter DM on [@Suheb__](https://twitter.com/Suheb__) or [@RTL_App](https://twitter.com/RTL_App). Thanks for your interest.