2019-01-28 00:31:32 +00:00
|
|
|
<a href="https://snyk.io/test/github/ShahanaFarooqui/RTL"><img src="https://snyk.io/test/github/ShahanaFarooqui/RTL/badge.svg" alt="Known Vulnerabilities" data-canonical-src="https://snyk.io/test/github/ShahanaFarooqui/RTL" style="max-width:100%;"></a>
|
|
|
|
|
2019-02-17 21:51:43 +00:00
|
|
|
**Intro** -- [Application Features](Application_features.md) -- [Road Map](Roadmap.md) -- [LND API Coverage](LNDAPICoverage.md) -- [Application Configurations](Application_configurations)
|
2018-11-17 17:17:12 +00:00
|
|
|
|
2018-11-17 17:18:35 +00:00
|
|
|
## RTL - Ride The Lightning
|
2018-09-15 01:32:18 +00:00
|
|
|
|
2019-02-17 01:20:38 +00:00
|
|
|
* [Introduction](#intro)
|
2019-02-17 01:29:56 +00:00
|
|
|
* [Prerequisites](#prereq)
|
|
|
|
* [Installation](#install)
|
|
|
|
* [Prep For Execution](#prep)
|
|
|
|
* [Start The Server](#start)
|
|
|
|
* [Access The Application](#access)
|
|
|
|
* [Troubleshooting](#trouble)
|
|
|
|
|
|
|
|
### <a name="intro"></a>Introduction
|
2018-09-15 01:32:18 +00:00
|
|
|
RTL is a web UI for Lightning Network Daemon.
|
|
|
|
|
|
|
|
Lightning Network Daemon is an implementation of Lightning Network BOLT protocol by Lightning Labs (https://lightning.engineering/).
|
|
|
|
|
|
|
|
Visit their Github repo (https://github.com/lightningnetwork/lnd/blob/master/README.md) for details on Lightning Network and LND implementation.
|
|
|
|
|
2018-11-03 12:19:36 +00:00
|
|
|
For setting up your Lightning Network node on a Raspberry Pi, you can follow the below guide:
|
2018-11-18 14:03:14 +00:00
|
|
|
|
2018-09-15 01:32:18 +00:00
|
|
|
https://github.com/Stadicus/guides/blob/master/raspibolt/README.md
|
|
|
|
|
2018-12-17 01:47:45 +00:00
|
|
|
RTL source code is available at the below repo:
|
|
|
|
|
|
|
|
https://github.com/ShahanaFarooqui/RTLFullApplication
|
|
|
|
|
2019-01-06 13:30:10 +00:00
|
|
|
For Screenshots and UI operation guide you can visit the below medium post:
|
2018-12-31 23:05:55 +00:00
|
|
|
|
|
|
|
https://medium.com/@suheb.khan/how-to-ride-the-lightning-447af999dcd2
|
|
|
|
|
2019-02-17 01:29:56 +00:00
|
|
|
### <a name="prereq"></a>Prerequisites
|
2018-10-07 22:04:25 +00:00
|
|
|
Please ensure that you have completed the installation of LND lightning node.
|
2018-09-15 01:32:18 +00:00
|
|
|
|
2018-11-02 00:33:53 +00:00
|
|
|
The application also requires Node.js, which can be downloaded from the below location:
|
|
|
|
|
|
|
|
https://nodejs.org/en/download/
|
|
|
|
|
|
|
|
Recommended Browsers: Chrome, Firefox, MS Edge
|
2018-09-16 03:27:11 +00:00
|
|
|
|
2019-02-17 01:29:56 +00:00
|
|
|
### <a name="install"></a>Installation
|
2018-11-18 14:03:14 +00:00
|
|
|
#### First time setup
|
2018-10-07 22:04:25 +00:00
|
|
|
Fetch sources from the RTL git repository, by executing the below command at the command prompt:
|
2018-09-15 01:32:18 +00:00
|
|
|
|
2018-10-07 22:13:14 +00:00
|
|
|
`$ git clone https://github.com/ShahanaFarooqui/RTL.git`
|
2018-09-15 01:32:18 +00:00
|
|
|
|
2018-10-07 22:04:25 +00:00
|
|
|
Move to the newly created directory:
|
2018-09-15 01:32:18 +00:00
|
|
|
|
2018-10-07 22:13:14 +00:00
|
|
|
`$ cd RTL`
|
2018-09-15 01:32:18 +00:00
|
|
|
|
|
|
|
Fetch the dependencies and build the application by running:
|
|
|
|
|
2018-10-07 22:13:14 +00:00
|
|
|
`$ npm install`
|
2018-09-15 01:32:18 +00:00
|
|
|
|
2018-11-18 14:03:14 +00:00
|
|
|
#### Updating existing build
|
|
|
|
`$ cd RTL`
|
2018-11-18 14:04:19 +00:00
|
|
|
|
2018-11-18 14:03:14 +00:00
|
|
|
Reset Git (for the changes you may have made to the config file).
|
2019-02-17 21:58:37 +00:00
|
|
|
```
|
|
|
|
$ git reset --hard HEAD
|
|
|
|
$ git clean -f -d
|
|
|
|
$ git pull
|
|
|
|
$ npm install
|
|
|
|
```
|
2019-02-17 01:29:56 +00:00
|
|
|
### <a name="prep"></a>Prep for Execution
|
2018-09-15 01:32:18 +00:00
|
|
|
Make sure you are in the RTL directory, where the application was built.
|
|
|
|
|
2019-01-01 16:26:51 +00:00
|
|
|
RTL requires a config file `RTL.conf` to start the server and provide user authentication for the app.
|
|
|
|
|
|
|
|
Locate the complete path of the readable macroon file (admin.macroon) on your node and lnd.conf file
|
2018-09-15 01:32:18 +00:00
|
|
|
|
2018-12-22 20:55:40 +00:00
|
|
|
If you followed Stacidus's guide referenced above, and you are on lnd version 0.4.2 or below it should be `/home/admin/.lnd`.
|
2018-10-09 23:23:35 +00:00
|
|
|
|
2018-12-22 20:55:40 +00:00
|
|
|
For lnd versions 0.5 and above, it should be `/home/admin/.lnd/data/chain/bitcoin/testnet`.
|
2018-10-07 22:20:31 +00:00
|
|
|
|
2019-01-01 16:26:51 +00:00
|
|
|
Other platform users should accordingly locate the directory of the readable macroon and lnd.conf files.
|
2018-09-15 01:32:18 +00:00
|
|
|
|
2019-01-01 16:26:51 +00:00
|
|
|
The path of the macroon directory and lnd.conf needs to be provided in the RTL.conf file to start the server.
|
2018-09-15 01:37:04 +00:00
|
|
|
|
2019-01-01 16:26:51 +00:00
|
|
|
Sample RTL.conf:
|
|
|
|
```
|
|
|
|
[Authentication]
|
|
|
|
lndServerUrl=https://localhost:8080/v1
|
2019-01-01 16:30:56 +00:00
|
|
|
macroonPath=C:\Users\<User>\AppData\Local\Lnd\data\chain\bitcoin\testnet
|
2019-01-01 16:26:51 +00:00
|
|
|
nodeAuthType=DEFAULT
|
2019-01-01 16:30:56 +00:00
|
|
|
lndConfigPath=C:\Users\<User>\AppData\Local\Lnd\lnd.conf
|
2019-01-01 16:26:51 +00:00
|
|
|
[Settings]
|
|
|
|
flgSidenavOpened=true
|
|
|
|
flgSidenavPinned=true
|
|
|
|
menu=Vertical
|
|
|
|
menuType=Regular
|
|
|
|
theme=dark-blue
|
|
|
|
satsToBTC=false
|
|
|
|
```
|
|
|
|
#### User Authentication on RTL
|
|
|
|
Basic user authentication has now been added on RTL. This requires user to login to RTL server first, before accessing LND functions.
|
|
|
|
There are two options to configure authentication on RTL, depending on the `nodeAuthtype` value provided in RTL.conf.
|
2018-10-07 22:21:45 +00:00
|
|
|
|
2019-01-01 16:26:51 +00:00
|
|
|
For `nodeAuthType=DEFAULT`
|
|
|
|
Password provided in lnd.conf for the rpc setting for bitcoind will be used for authentication.
|
2018-10-07 22:21:45 +00:00
|
|
|
|
2019-01-01 16:26:51 +00:00
|
|
|
For `nodeAuthType=CUSTOM`
|
|
|
|
Specific password can be provided in RTL.conf, to be used by RTL for authentication.
|
|
|
|
Password should be set with `rtlPass=<user defined>` in the [Authentication] section of RTL.conf
|
2018-10-07 22:21:45 +00:00
|
|
|
|
2019-02-17 01:29:56 +00:00
|
|
|
### <a name="start"></a>Start the Server
|
2019-01-01 16:26:51 +00:00
|
|
|
Run the following command:
|
2018-10-07 22:21:45 +00:00
|
|
|
|
2019-01-01 16:26:51 +00:00
|
|
|
`node rtl`
|
2018-09-15 01:32:18 +00:00
|
|
|
|
|
|
|
If the server started successfully, you should get the below output on the console:
|
|
|
|
|
|
|
|
`Server is up and running, please open the UI at http://localhost:3000`
|
|
|
|
|
2018-11-17 17:18:35 +00:00
|
|
|
#### Optional: Running RTL as a service (rpi or Linux platform users)
|
2018-10-07 22:20:31 +00:00
|
|
|
In case you are running a headless rpi or Linux node, you can configure RTL as a service.
|
|
|
|
|
2018-10-07 22:29:02 +00:00
|
|
|
* Create RTL systemd unit and with the following content. Save and exit.
|
2018-10-09 23:22:28 +00:00
|
|
|
```bash
|
|
|
|
# Raspibolt RTL: systemd unit for RTL
|
|
|
|
# /etc/systemd/system/RTL.service
|
2018-10-07 22:29:02 +00:00
|
|
|
|
|
|
|
[Unit]
|
|
|
|
Description=RTL daemon
|
|
|
|
Wants=lnd.service
|
2018-10-07 22:31:41 +00:00
|
|
|
After=lnd.service
|
2018-10-07 22:29:50 +00:00
|
|
|
|
2018-10-07 22:29:02 +00:00
|
|
|
[Service]
|
2019-01-01 16:26:51 +00:00
|
|
|
ExecStart=/usr/bin/node /home/admin/Projects/RTL/rtl
|
2018-10-09 23:23:35 +00:00
|
|
|
User=<user>
|
2018-10-07 22:29:02 +00:00
|
|
|
Restart=always
|
|
|
|
TimeoutSec=120
|
|
|
|
RestartSec=30
|
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|
2018-10-09 23:22:28 +00:00
|
|
|
```
|
2018-10-07 22:39:30 +00:00
|
|
|
|
2018-10-07 22:35:48 +00:00
|
|
|
* enable and start RTL
|
2019-02-17 21:58:37 +00:00
|
|
|
```
|
|
|
|
$ sudo systemctl enable RTL
|
|
|
|
$ sudo systemctl start RTL
|
|
|
|
```
|
2018-10-07 22:35:48 +00:00
|
|
|
* montior the RTL log file in realtime(exit with Ctrl-C)
|
2018-10-07 22:36:37 +00:00
|
|
|
|
2019-01-10 15:27:13 +00:00
|
|
|
`$ sudo journalctl -f -u RTL`
|
2018-10-07 22:35:48 +00:00
|
|
|
|
2019-02-17 01:29:56 +00:00
|
|
|
### <a name="access"></a>Accessing the Application
|
2018-09-28 01:25:15 +00:00
|
|
|
You can access the application in two ways:
|
2019-02-17 01:29:56 +00:00
|
|
|
#### Same computer as the server
|
2018-09-16 03:21:12 +00:00
|
|
|
Open your browser at the following address: http://localhost:3000 to access the RTL application.
|
2018-09-28 01:25:15 +00:00
|
|
|
|
2018-11-17 17:18:35 +00:00
|
|
|
#### Remotely from another computer on the same local network as the node
|
2018-09-28 01:25:15 +00:00
|
|
|
To access the application remotely from a computer, ensure that the firewall running on your node allows access on port 3000.
|
2018-10-07 22:20:31 +00:00
|
|
|
You would need the IP address of your node to access the application.
|
2018-09-28 01:39:09 +00:00
|
|
|
|
|
|
|
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.
|
2018-12-31 23:05:55 +00:00
|
|
|
|
2019-02-17 01:29:56 +00:00
|
|
|
### <a name="trouble"></a>Troubleshooting
|
2018-12-31 23:05:55 +00:00
|
|
|
Feel free to open issues on our github, in case you are running into issues with the application.
|
2019-02-17 01:33:14 +00:00
|
|
|
|
|
|
|
You can also reach out via twitter DM on @Sauby_k or @RTL_app Thanks.
|