Haris Razis
4 years ago
3 changed files with 21 additions and 5 deletions
@ -0,0 +1,10 @@ |
|||||
|
module.exports = { |
||||
|
influx_url: 'http://0.0.0.0', |
||||
|
influx_token: '', |
||||
|
influx_org: '', |
||||
|
influx_bucket: '', |
||||
|
redis_user: '', |
||||
|
redis_password: '', |
||||
|
redis_host: '0.0.0.0', |
||||
|
redis_port: '7001' |
||||
|
} |
@ -1,8 +1,14 @@ |
|||||
const express = require('express') |
const app = require('express')() |
||||
const app = express() |
const server = require('http').createServer(app); |
||||
|
const chalk = require('chalk') |
||||
|
|
||||
|
const redis = require('./connections/redis_conn') |
||||
|
const influx = require('./connections/influx_conn') |
||||
|
const socket = require('./services/socket')(server) |
||||
|
|
||||
const measurementRoute = require('./routes/data') |
const measurementRoute = require('./routes/data') |
||||
|
|
||||
app.use(measurementRoute) |
app.use(measurementRoute) |
||||
|
|
||||
module.exports = app; |
server.listen(3000); |
||||
|
console.log(chalk.green.bold('Server listening on port 3000!')); |
Loading…
Reference in new issue