-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
31 lines (26 loc) · 753 Bytes
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
const express = require('express')
const app = express()
const PORT = 8990
const bodyParser = require('body-parser')
const DB = require('./configs/db')
const fs = require('fs')
config = JSON.parse(fs.readFileSync('./configs/configs.json', 'utf8'))
// parse application/json
app.use(bodyParser.json())
// Controller
const DeviceController = require('./app/Device/api')
// Register Token
app.post('/api/v1/device/register', function(req, res){
return DeviceController.register(req, res)
})
// Push Token
app.post('/api/v1/device/push', function(req, res){
return DeviceController.push(req, res)
})
DB.initialize(function(err){
app.listen(PORT, function () {
// DB
db = DB.db
console.log(`server listening on port ${PORT}!`)
})
})