mirror of
https://github.com/Qortal/qortal-ui.git
synced 2025-07-30 13:41:44 +00:00
Redsign qortal-ui repo
This commit is contained in:
24
core/server/server.js
Normal file
24
core/server/server.js
Normal file
@@ -0,0 +1,24 @@
|
||||
const ServerFactory = require('./ServerFactory.js')
|
||||
|
||||
const createPrimaryRoutes = require('./routes/createPrimaryRoutes.js')
|
||||
|
||||
const createServer = (config, plugins) => {
|
||||
this.start = async function () {
|
||||
const primaryServer = new ServerFactory(createPrimaryRoutes(config, plugins), config.user.server.primary.host, config.user.server.primary.port, config.user.tls.enabled ? config.user.tls.options : void 0)
|
||||
primaryServer.startServer()
|
||||
.then(server => {
|
||||
console.log(`Qortal UI Server started at ${server.info.uri} and listening on ${server.info.address}`)
|
||||
})
|
||||
.catch(e => {
|
||||
console.error(e)
|
||||
})
|
||||
}
|
||||
return this
|
||||
}
|
||||
|
||||
|
||||
const serverExports = {
|
||||
createServer
|
||||
}
|
||||
|
||||
module.exports = serverExports
|
Reference in New Issue
Block a user