mirror of
https://github.com/Ride-The-Lightning/RTL.git
synced 2024-11-19 01:40:29 +01:00
parent
af547f922e
commit
9bb484d3fe
2
.github/README.md
vendored
2
.github/README.md
vendored
@ -125,7 +125,7 @@ Run the following command:
|
|||||||
|
|
||||||
If the server started successfully, you should get the below output on the console:
|
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`
|
`$ Server is up and running, please open the UI at http://localhost:3000 or your proxy configured url.`
|
||||||
|
|
||||||
#### Optional: Running RTL as a service (Rpi or Linux platform users)
|
#### 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.
|
In case you are running a headless Rpi or a Linux node, you can configure RTL as a service.
|
||||||
|
2
.github/docs/Core_lightning_setup.md
vendored
2
.github/docs/Core_lightning_setup.md
vendored
@ -94,7 +94,7 @@ Run the following command:
|
|||||||
|
|
||||||
If the server started successfully, you should get the below output on the console:
|
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`
|
`$ Server is up and running, please open the UI at http://localhost:3000 or your proxy configured url.`
|
||||||
|
|
||||||
Open your browser at the following address: http://localhost:3000 to access the RTL app.
|
Open your browser at the following address: http://localhost:3000 to access the RTL app.
|
||||||
|
|
||||||
|
2
.github/docs/Eclair_setup.md
vendored
2
.github/docs/Eclair_setup.md
vendored
@ -89,7 +89,7 @@ Run the following command:
|
|||||||
|
|
||||||
If the server started successfully, you should get the below output on the console:
|
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`
|
`$ Server is up and running, please open the UI at http://localhost:3000 or your proxy configured url.`
|
||||||
|
|
||||||
Open your browser at the following address: http://localhost:3000 to access the RTL app.
|
Open your browser at the following address: http://localhost:3000 to access the RTL app.
|
||||||
|
|
||||||
|
2
rtl.js
2
rtl.js
@ -35,7 +35,7 @@ const onError = (error) => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const onListening = () => {
|
const onListening = () => {
|
||||||
logger.log({ level: 'INFO', fileName: 'RTL', msg: 'Server is up and running, please open the UI at http://' + (common.host ? common.host : 'localhost') + ':' + common.port });
|
logger.log({ level: 'INFO', fileName: 'RTL', msg: 'Server is up and running, please open the UI at http://' + (common.host ? common.host : 'localhost') + ':' + common.port + ' or your proxy configured url' });
|
||||||
};
|
};
|
||||||
|
|
||||||
let server = http.createServer(app.getApp());
|
let server = http.createServer(app.getApp());
|
||||||
|
Loading…
Reference in New Issue
Block a user