added config file
This commit is contained in:
parent
6b0f2901f7
commit
9e2a0e83f4
2 changed files with 31 additions and 4 deletions
19
config.json
Normal file
19
config.json
Normal file
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"general": {
|
||||
"amqp": [
|
||||
"amqp://daemon:daemon@10.13.37.37:5672/"
|
||||
],
|
||||
"port": 3000
|
||||
},
|
||||
"connectors": {
|
||||
"pocsag": {
|
||||
"enabled": true
|
||||
},
|
||||
"lorawan": {
|
||||
"enabled": false
|
||||
},
|
||||
"dapnet": {
|
||||
"enabled": false
|
||||
}
|
||||
}
|
||||
}
|
16
index.js
16
index.js
|
@ -1,14 +1,22 @@
|
|||
const amqp = require('amqp-connection-manager')
|
||||
const config = require('./config.json')
|
||||
|
||||
// Create a connetion manager
|
||||
const connection = amqp.connect([
|
||||
'amqp://daemon:daemon@10.13.37.37:5672/'
|
||||
])
|
||||
const connection = amqp.connect(config.general.amqp)
|
||||
connection.on('connect', () => console.log('Connected to AMQP.'))
|
||||
connection.on('disconnect', err => console.log('Disconnected from AMQP.', err.stack))
|
||||
|
||||
const types = require('./types') // also initializes the registries, if they havent been loaded
|
||||
types.ConnectorRegistry.register(new types.Connectors.POCSAGConnector(connection)) // activate POCSAG
|
||||
|
||||
if (!!config.connectors.pocsag && config.connectors.pocsag.enabled === true) {
|
||||
types.ConnectorRegistry.register(new types.Connectors.POCSAGConnector(connection))
|
||||
}
|
||||
if (!!config.connectors.lorawan && config.connectors.lorawan.enabled === true) {
|
||||
types.ConnectorRegistry.register(new types.Connectors.LoRaWANConnector(connection))
|
||||
}
|
||||
if (!!config.connectors.dapnet && config.connectors.dapnet.enabled === true) {
|
||||
types.ConnectorRegistry.register(new types.Connectors.DAPNETConnector())
|
||||
}
|
||||
|
||||
types.DeviceRegistry.register(new types.devices.GenericPager())
|
||||
types.DeviceRegistry.register(new types.devices.BirdySlim())
|
||||
|
|
Loading…
Add table
Reference in a new issue