Clean Code

This commit is contained in:
AlphaX-Projects
2022-01-26 08:25:17 -08:00
committed by GitHub
parent bb98fc87eb
commit 26fc642acc

View File

@@ -1,53 +1,10 @@
const path = require('path')
const user = {
// management can be enabled as explicit for public API servers when needed
node: 0,
knownNodes: [
// Mainnet nodes
{
protocol: 'http',
domain: '127.0.0.1',
port: 12391,
enableManagement: true,
},
{
protocol: 'http',
domain: 'node1.qortal.org',
port: 12391,
enableManagement: false,
},
{
protocol: 'http',
domain: 'node2.qortal.org',
port: 12391,
enableManagement: false,
},
// Testnet nodes
{
protocol: 'http',
domain: '127.0.0.1',
port: 62391,
enableManagement: false,
},
{
protocol: 'http',
domain: 'node1.qortal.org',
port: 62391,
enableManagement: false,
},
{
protocol: 'http',
domain: 'node2.qortal.org',
port: 62391,
enableManagement: false,
},
],
nodeSettings: {
pingInterval: 10 * 1000, // (10 secs)
},
version: 'v1.6.3', // TODO: Set this dynamically...
language: 'english', // default...english
theme: 'light',
server: {