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.
 
 
 
 

17 lines
380 B

const express = require('express');
const bodyParser = require('body-parser');
const models = require('./models');
import { SetupApp } from './app';
const app = express();
SetupApp(app);
models.sequelize.sync().then(() => {
// TODO: configurable port
const port = process.env.PORT || 5000;
app.listen(port, () => console.log(`Listening on port ${port}`));
})
export { }