const app = require('./app') const logger = require('pino')() // Binds and listens for connections on the specified host and port app.listen(process.env.PORT, () => { logger.info(`manifest-service listening on port ${process.env.PORT}`) })