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

139 lines
4.1 KiB
Markdown

6 years ago
[ **Intro** ] -- [ [Application Features](Application_features.md) ] -- [ [Road Map](Roadmap.md) ]
6 years ago
6 years ago
## RTL - Ride The Lightning
6 years ago
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.
6 years ago
For setting up your Lightning Network node on a Raspberry Pi, you can follow the below guide:
6 years ago
6 years ago
https://github.com/Stadicus/guides/blob/master/raspibolt/README.md
6 years ago
RTL source code is available at the below repo:
https://github.com/ShahanaFarooqui/RTLFullApplication
6 years ago
### Prerequisites
6 years ago
Please ensure that you have completed the installation of LND lightning node.
6 years ago
6 years ago
Its recommended to run this application on testnet, untill the aplha testing phase is over.
6 years ago
6 years ago
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
6 years ago
6 years ago
### Installation
6 years ago
6 years ago
#### First time setup
6 years ago
Fetch sources from the RTL git repository, by executing the below command at the command prompt:
6 years ago
6 years ago
`$ git clone https://github.com/ShahanaFarooqui/RTL.git`
6 years ago
6 years ago
Move to the newly created directory:
6 years ago
6 years ago
`$ cd RTL`
6 years ago
Fetch the dependencies and build the application by running:
6 years ago
`$ npm install`
6 years ago
6 years ago
#### Updating existing build
`$ cd RTL`
6 years ago
6 years ago
Reset Git (for the changes you may have made to the config file).
6 years ago
5 years ago
Warning: This step will revert the UI settings, you may have changed on RTL (We will address this in future revisions).
6 years ago
6 years ago
`$ git reset --hard HEAD`
6 years ago
6 years ago
`$ git clean -f -d`
6 years ago
6 years ago
`$ git pull`
6 years ago
`$ npm install`
6 years ago
### Execution
6 years ago
Make sure you are in the RTL directory, where the application was built.
6 years ago
Locate the complete path of the readable macroon file (admin.macroon) on your node.
6 years ago
5 years ago
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`.
6 years ago
5 years ago
For lnd versions 0.5 and above, it should be `/home/admin/.lnd/data/chain/bitcoin/testnet`.
6 years ago
6 years ago
Other platform users should accordingly locate the directory of the readable macroon file.
6 years ago
6 years ago
The path of the macroon directory needs to be provided as a command line argument to start the server.
6 years ago
6 years ago
### Start the Webserver
6 years ago
Run the following command:
6 years ago
`node rtl --lndir <macaroon-path>`
For example:
6 years ago
6 years ago
`$ node rtl --lndir /home/admin/.lnd`
6 years ago
6 years ago
or
6 years ago
6 years ago
`$ node rtl --lndir /home/admin/.lnd/data/chain/bitcoin/testnet`
6 years ago
6 years ago
or (for windows)
6 years ago
6 years ago
`$ node rtl --lndir C:\Users\<your user directory>\AppData\Local\Lnd\data\chain\bitcoin\testnet`
6 years ago
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`
6 years ago
#### Optional: Running RTL as a service (rpi or Linux platform users)
6 years ago
In case you are running a headless rpi or Linux node, you can configure RTL as a service.
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]
ExecStart=/usr/bin/node /home/admin/Projects/RTL/rtl --lndir /home/admin/.lnd/data/chain/bitcoin/testnet/
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
6 years ago
6 years ago
`$ sudo systemctl enable RTL`
6 years ago
6 years ago
`$ sudo systemctl start RTL`
* montior the RTL log file in realtime(exit with Ctrl-C)
6 years ago
6 years ago
`$ sudo jounrnalctl -f -u RTL`
6 years ago
### Accessing the Application
6 years ago
You can access the application in two ways:
6 years ago
#### Same computer as the webserver
6 years ago
Open your browser at the following address: http://localhost:3000 to access the RTL application.
6 years ago
6 years ago
#### Remotely from another computer on the same local network as the node
6 years ago
To access the application remotely from a computer, ensure that the firewall running on your node allows access on port 3000.
6 years ago
You would need 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.