2
0
mirror of https://github.com/Ride-The-Lightning/RTL synced 2024-11-03 23:15:24 +00:00
Go to file
2019-02-21 19:07:38 -05:00
.circleci circleci 2019-02-20 14:13:09 -05:00
.github/ISSUE_TEMPLATE Update issue templates 2018-10-09 15:15:38 -04:00
angular Added reverse proxy configuration 2019-02-20 19:31:38 -05:00
controllers RTL conf standardization 2019-02-16 17:43:12 -05:00
cookies Updates for docker enablement 2 2019-02-12 08:36:04 -05:00
routes Updates for docker enablement 2 2019-02-12 08:36:04 -05:00
screenshots Add files via upload 2019-02-18 14:11:50 -05:00
settings Pending Channels and Detach Peer 2018-12-24 23:01:31 -05:00
_config.yml Set theme jekyll-theme-hacker 2019-01-10 21:23:06 -05:00
.DS_Store Initial commit 2018-09-14 21:31:01 -04:00
.gitattributes Initial commit 2018-09-14 21:31:01 -04:00
.gitignore Authentication and Bug fixes 2019-01-01 11:26:51 -05:00
app.js Added reverse proxy configuration 2019-02-20 19:31:38 -05:00
Application_configurations Update Application_configurations 2019-02-20 19:40:49 -05:00
Application_features.md Update Application_features.md 2019-02-17 16:53:22 -05:00
common.js Added reverse proxy configuration 2019-02-20 19:31:38 -05:00
connect.js Added reverse proxy configuration 2019-02-20 19:31:38 -05:00
Dockerfile tini 2019-02-15 22:43:57 -05:00
Dockerfile.arm32v7 docker arm 2019-02-20 14:03:18 -05:00
LICENSE Create LICENSE 2018-09-27 22:23:50 -04:00
LNDAPICoverage.md Update LNDAPICoverage.md 2019-02-17 16:53:54 -05:00
package-lock.json Added reverse proxy configuration 2019-02-20 19:31:38 -05:00
package.json Added reverse proxy configuration 2019-02-20 19:31:38 -05:00
README.md Update README.md 2019-02-21 19:07:38 -05:00
Roadmap.md Update Roadmap.md 2019-02-17 16:53:38 -05:00
rtl.js RTL conf standardization 2019-02-16 17:43:12 -05:00
sample-RTL.conf Sample RTL.conf 2019-02-16 17:52:35 -05:00

Ride The Lightning (RTL)

Known Vulnerabilities license

Stable Release: v0.2.1

Intro -- Application Features -- Road Map -- LND API Coverage -- Application Configurations

Introduction

RTL is a full function, device agnostic web user interface for Lightning Network Daemon, to help manage lightning node operations. Lightning Network Daemon is an implementation of Lightning Network BOLT protocol by Lightning Labs.

Pre-requisite for running RTL is a functioning LND node. You can setup your own node, by following the below guides:

  • Windows/Mac users can explore Pierre Rochard's Node Launcher
  • Linux or Raspberry Pi users can explore Stadicus's guide

RTL source code is available at this repo

For detailed screenshots and UI operation guide you can visit our medium post

Architecture

Prerequisites

Please ensure that you have completed the installation of LND lightning node.

The application also requires Node.js, which can be downloaded here

Recommended Browsers: Chrome, Firefox, MS Edge

Installation

First time setup

Fetch sources from the RTL git repository, by executing the below command at the command prompt:

$ git clone https://github.com/ShahanaFarooqui/RTL.git

Move to the newly created directory:

$ cd RTL

Fetch the dependencies and build the application by running:

$ npm install

Updating existing build

$ cd RTL
$ git reset --hard HEAD
$ git clean -f -d
$ git pull
$ npm install

Prep for Execution

Rename sample-RTL.conf file to RTL.conf. RTL requires its config file RTL.conf, to start the server and provide user authentication on the app. Locate the complete path of the readable macroon file (admin.macroon) on your node and lnd.conf file The path of the macroon directory and lnd.conf needs to be provided in the RTL.conf file to start the server.

For details on all the configuration options refer to this page.

Sample RTL.conf:

[Authentication]
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]
flgSidenavOpened=true
flgSidenavPinned=true
menu=Vertical
menuType=Regular
theme=dark-blue
satsToBTC=false
lndServerUrl=https://192.168.0.0:8080/v1
bitcoindConfigPath=
enableLogging=false
port=3000
reverseProxy=0

User Authentication on RTL

Basic user authentication has now been added on RTL. This requires user to be authenticated by RTL first, before accessing LND functions. There are two options to configure authentication on RTL, depending on the nodeAuthtype value provided in RTL.conf.

For nodeAuthType=DEFAULT Password provided in lnd.conf for the rpc setting for bitcoind will be used for authentication.

For nodeAuthType=CUSTOM Specific password can be provided in RTL.conf (in plain text), to be used by RTL for authentication. Password should be set with rtlPass=<user defined> in the [Authentication] section of RTL.conf

Start the Server

Run the following command:

node rtl

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

Optional: Running RTL as a service (rpi or Linux platform users)

In case you are running a headless rpi or Linux node, you can configure RTL as a service.

  • Create RTL systemd unit and with the following content. Save and exit.
# Raspibolt RTL: systemd unit for RTL
# /etc/systemd/system/RTL.service

[Unit]
Description=RTL daemon
Wants=lnd.service
After=lnd.service

[Service]
ExecStart=/usr/bin/node /home/admin/Projects/RTL/rtl
User=<user>
Restart=always
TimeoutSec=120
RestartSec=30

[Install]
WantedBy=multi-user.target
  • enable and start RTL
$ sudo systemctl enable RTL
$ sudo systemctl start RTL
  • montior the RTL log file in realtime(exit with Ctrl-C)

$ sudo journalctl -f -u RTL

Accessing the Application

You can access the application in two ways:

Same device as the server

Open your browser at the following address: http://localhost:3000 to access the RTL application.

Remotely from another device on the same local network as the node

Ensure that the firewall running on your node allows access on port 3000 (or the custom port configured for RTL). Determine the IP address of your node to access the application.

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.

Troubleshooting

Feel free to open issues on our github, in case you are running into issues with the application.

You can also reach out via twitter DM on @Sauby_k or @RTL_App. Thanks for your interest.