qortal-ui/qortal-ui-core/config/default.user.config.js
AlphaX-Projects 26fc642acc
Clean Code
2022-01-26 08:25:17 -08:00

50 lines
1.1 KiB
JavaScript

const path = require('path')
const user = {
node: 0,
nodeSettings: {
pingInterval: 10 * 1000, // (10 secs)
},
language: 'english', // default...english
theme: 'light',
server: {
writeHosts: {
enabled: true,
},
relativeTo: path.join(__dirname, '../'),
primary: {
domain: '0.0.0.0',
address: '0.0.0.0',
port: 12388,
directory: './src/',
page404: './src/404.html',
host: '0.0.0.0',
},
},
tls: {
enabled: false,
options: {
key: '',
cert: '',
},
},
constants: {
pollingInterval: 10000, // How long between checking for new unconfirmed transactions and new blocks (in milliseconds).
workerURL: '/build/worker.js',
},
// Notification Settings (All defaults to true)
notifications: {
q_chat: {
playSound: true,
showNotification: true,
},
block: {
playSound: true,
showNotification: true,
},
},
}
module.exports = user