You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
946 B
28 lines
946 B
import * as express from 'express'; |
|
import * as bodyParser from 'body-parser'; |
|
|
|
import { router as anomaliesRouter } from './routes/anomalies'; |
|
import { router as segmentsRouter } from './routes/segments'; |
|
import { router as alertsRouter } from './routes/alerts'; |
|
|
|
const app = express(); |
|
const PORT = process.env.HASTIC_PORT || 8000; |
|
|
|
app.use(bodyParser.json()); |
|
app.use(bodyParser.urlencoded({ extended: true })); |
|
|
|
app.use(function (req, res, next) { |
|
res.header('Access-Control-Allow-Origin', '*'); |
|
res.header('Access-Control-Allow-Methods', 'GET, POST, PUT, DELETE, PATCH, OPTIONS'); |
|
res.header('Access-Control-Allow-Headers', 'Origin, X-Requested-With, Content-Type, Accept'); |
|
next(); |
|
}); |
|
|
|
app.use('/anomalies', anomaliesRouter); |
|
app.use('/segments', segmentsRouter); |
|
app.use('/alerts', alertsRouter); |
|
app.use('/', (req, res) => res.send({ status: 'OK' })); |
|
|
|
app.listen(PORT, () => { |
|
console.log(`Server is running on :${PORT}`) |
|
});
|
|
|