noide
Version:
Web Editor built on hapi and nes websockets using browserify, superviews.js, bootstrap and the ACE editor.
37 lines (34 loc) • 534 B
JavaScript
const config = require('../config')
const manifest = {
server: {},
connections: [
{
port: config.server.port,
host: config.server.home,
labels: config.server.labels
}
],
registrations: [
{
plugin: {
register: 'inert'
}
},
{
plugin: {
register: 'vision'
}
},
{
plugin: {
register: 'nes'
}
},
{
plugin: {
register: 'good',
options: config.logging
}
}]
}
module.exports = manifest