Ride-The-Lightning-RTL/README.md

135 lines
4 KiB
Markdown
Raw Normal View History

2018-11-01 20:33:53 -04:00
[ **Intro** ] -- [ [Application Features](Application_features.md) ] -- [ [Road Map](Roadmap.md) ]
2018-11-17 12:17:12 -05:00
2018-11-17 12:18:35 -05:00
## RTL - Ride The Lightning
2018-09-14 21:32:18 -04: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 08:19:36 -04:00
For setting up your Lightning Network node on a Raspberry Pi, you can follow the below guide:
2018-11-18 09:03:14 -05:00
2018-09-14 21:32:18 -04:00
https://github.com/Stadicus/guides/blob/master/raspibolt/README.md
2018-11-17 12:18:35 -05:00
### Prerequisites
2018-10-07 18:04:25 -04:00
Please ensure that you have completed the installation of LND lightning node.
2018-09-14 21:32:18 -04:00
2018-10-07 18:04:25 -04:00
Its recommended to run this application on testnet, untill the aplha testing phase is over.
2018-09-14 21:32:18 -04:00
2018-11-01 20:33:53 -04: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-15 23:27:11 -04:00
2018-11-17 12:18:35 -05:00
### Installation
2018-09-14 21:32:18 -04:00
2018-11-18 09:03:14 -05:00
#### First time setup
2018-10-07 18:04:25 -04:00
Fetch sources from the RTL git repository, by executing the below command at the command prompt:
2018-09-14 21:32:18 -04:00
2018-10-07 18:13:14 -04:00
`$ git clone https://github.com/ShahanaFarooqui/RTL.git`
2018-09-14 21:32:18 -04:00
2018-10-07 18:04:25 -04:00
Move to the newly created directory:
2018-09-14 21:32:18 -04:00
2018-10-07 18:13:14 -04:00
`$ cd RTL`
2018-09-14 21:32:18 -04:00
Fetch the dependencies and build the application by running:
2018-10-07 18:13:14 -04:00
`$ npm install`
2018-09-14 21:32:18 -04:00
2018-11-18 09:03:14 -05:00
#### Updating existing build
`$ cd RTL`
2018-11-18 09:04:19 -05:00
2018-11-18 09:03:14 -05:00
Reset Git (for the changes you may have made to the config file).
2018-11-18 09:04:19 -05:00
2018-11-18 09:03:14 -05:00
Warning: This step will revert the settings changes, you may have made on RTL earlier. We will address this in future revisions.
2018-11-18 09:04:19 -05:00
2018-11-18 09:03:14 -05:00
`$ git reset --hard HEAD`
2018-11-18 09:04:50 -05:00
2018-11-18 09:03:14 -05:00
`$ git clean -f -d`
2018-11-18 09:04:50 -05:00
2018-11-18 09:03:14 -05:00
`$ git pull`
2018-11-23 06:51:14 -05:00
`$ npm install`
2018-11-17 12:18:35 -05:00
### Execution
2018-09-14 21:32:18 -04:00
Make sure you are in the RTL directory, where the application was built.
2018-09-15 23:19:38 -04:00
Locate the complete path of the readable macroon file (admin.macroon) on your node.
2018-09-14 21:32:18 -04:00
2018-10-07 18:13:14 -04:00
If you followed the guide above, and your on lnd version 0.4.2 or below it should be `/home/admin/.lnd`.
2018-10-09 19:23:35 -04:00
2018-10-07 18:20:31 -04:00
For lnd version 0.5 it should be `/home/admin/.lnd/data/chain/bitcoin/testnet`.
2018-10-07 18:13:14 -04:00
Other platform users should accordingly locate the directory of the readable macroon file.
2018-09-14 21:32:18 -04:00
2018-10-07 18:20:31 -04:00
The path of the macroon directory needs to be provided as a command line argument to start the server.
2018-09-14 21:32:18 -04:00
2018-11-17 12:18:35 -05:00
### Start the Webserver
2018-09-14 21:32:18 -04:00
Run the following command:
2018-09-14 21:37:04 -04:00
`node rtl --lndir <macaroon-path>`
For example:
2018-11-18 09:06:24 -05:00
2018-10-07 18:20:31 -04:00
`$ node rtl --lndir /home/admin/.lnd`
2018-10-07 18:21:45 -04:00
2018-10-07 18:20:31 -04:00
or
2018-10-07 18:21:45 -04:00
2018-10-07 18:20:31 -04:00
`$ node rtl --lndir /home/admin/.lnd/data/chain/bitcoin/testnet`
2018-10-07 18:21:45 -04:00
2018-10-07 18:20:31 -04:00
or (for windows)
2018-10-07 18:21:45 -04:00
2018-10-07 18:20:31 -04:00
`$ node rtl --lndir C:\Users\<your user directory>\AppData\Local\Lnd\data\chain\bitcoin\testnet`
2018-09-14 21:32:18 -04: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 12:18:35 -05:00
#### Optional: Running RTL as a service (rpi or Linux platform users)
2018-10-07 18:20:31 -04:00
In case you are running a headless rpi or Linux node, you can configure RTL as a service.
2018-10-07 18:29:02 -04:00
* Create RTL systemd unit and with the following content. Save and exit.
2018-10-09 19:22:28 -04:00
```bash
# Raspibolt RTL: systemd unit for RTL
# /etc/systemd/system/RTL.service
2018-10-07 18:29:02 -04:00
[Unit]
Description=RTL daemon
Wants=lnd.service
2018-10-07 18:31:41 -04:00
After=lnd.service
2018-10-07 18:29:50 -04:00
2018-10-07 18:29:02 -04:00
[Service]
ExecStart=/usr/bin/node /home/admin/Projects/RTL/rtl --lndir /home/admin/.lnd/data/chain/bitcoin/testnet/
2018-10-09 19:23:35 -04:00
User=<user>
2018-10-07 18:29:02 -04:00
Restart=always
TimeoutSec=120
RestartSec=30
[Install]
WantedBy=multi-user.target
2018-10-09 19:22:28 -04:00
```
2018-10-07 18:39:30 -04:00
2018-10-07 18:35:48 -04:00
* enable and start RTL
2018-10-07 18:36:37 -04:00
2018-10-07 18:35:48 -04:00
`$ sudo systemctl enable RTL`
2018-10-07 18:39:30 -04:00
2018-10-07 18:35:48 -04:00
`$ sudo systemctl start RTL`
* montior the RTL log file in realtime(exit with Ctrl-C)
2018-10-07 18:36:37 -04:00
2018-10-07 18:35:48 -04:00
`$ sudo jounrnalctl -f -u RTL`
2018-11-17 12:18:35 -05:00
### Accessing the Application
2018-09-27 21:25:15 -04:00
You can access the application in two ways:
2018-11-17 12:18:35 -05:00
#### Same computer as the webserver
2018-09-15 23:21:12 -04:00
Open your browser at the following address: http://localhost:3000 to access the RTL application.
2018-09-27 21:25:15 -04:00
2018-11-17 12:18:35 -05:00
#### Remotely from another computer on the same local network as the node
2018-09-27 21:25:15 -04: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 18:20:31 -04:00
You would need the IP address of your node to access the application.
2018-09-27 21:39:09 -04: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.