homebridge-config-ui-x
Version:
A web based management, configuration and control platform for Homebridge
13 lines (10 loc) • 327 B
JavaScript
const path = require('path')
const fastify = require('fastify')({ logger: { level: 'trace' } })
fastify
// compress everything
.register(require('fastify-compress'), { threshold: 0 })
.register(require('../'), { root: path.join(__dirname, '/public') })
.listen(3000, err => {
if (err) throw err
})