1
0
mirror of https://github.com/Qortal/qortal-ui.git synced 2025-08-22 02:21:47 +00:00
Files
build
config
core
assets
config
config.js
default.build.options.js
default.coin.config.js
default.crypto.config.js
default.styles.config.js
default.user.config.js
load-config.js
emoji
exports
font
language
memory-pow
public
server
sound
src
tooling
.eslintignore
.eslintrc.json
ui-core.js
crypto
img
lib
locales
plugins
scripts
snap
splash
.editorconfig
.eslintrc.json
.gitattributes
.gitignore
.travis.yml
CONTRIBUTING.md
LICENSE
README.md
build-setup.js
build.bat
build.js
build.sh
electron-builder.yml
electron.js
install-dependencies.sh
package-lock.json
package.json
push-updates-with-travis-build.sh
run_server.bat
server.js
set-up-snap.sh
watch-inline.js
watch.js
qortal-ui/core/config/default.user.config.js
2023-05-11 18:40:52 +02:00

47 lines
1.0 KiB
JavaScript

const path = require('path')
const user = {
node: 0,
nodeSettings: {
pingInterval: 30 * 1000,
},
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: 30 * 1000, // 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