lorenzocestaro/inspirobot-slack

View on GitHub
src/server.js

Summary

Maintainability
A
0 mins
Test Coverage
const http = require('http');

const app = require('./app');

const PORT = process.env.PORT || 80;

http.createServer(app).listen(PORT, () => {
    console.log(`server start at port ${PORT}`);
});