Copy website_example to website/, add static file serving via Node fs in the API default route handler, and remove website/ from .gitignore. The API now serves index.html at / and all static assets by path. Co-Authored-By: Virgil <virgil@lethean.io>
19 lines
632 B
JavaScript
19 lines
632 B
JavaScript
var api = "http://127.0.0.1:2117";
|
|
let parentCoin = "Lethean"
|
|
|
|
let byteUnits = [' H', ' KH', ' MH', ' GH', ' TH', ' PH', 'EH', 'ZH', 'YH']
|
|
|
|
var email = "developers@lethean.io";
|
|
var telegram = "https://t.me/laborx";
|
|
var discord = "https://discord.gg/lethean";
|
|
var facebook = "";
|
|
|
|
var marketCurrencies = ["{symbol}-BTC", "{symbol}-USDT", "{symbol}-USD", "{symbol}-EUR"];
|
|
|
|
var blockchainExplorer = "http://127.0.0.1:3335/block/{id}";
|
|
var blockchainExplorerMerged = "";
|
|
var transactionExplorer = "http://127.0.0.1:3335/transaction/{id}";
|
|
var transactionExplorerMerged = "";
|
|
|
|
var themeCss = "themes/default.css";
|
|
var defaultLang = 'en';
|