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.
 
 
 
 

15 lines
316 B

const express = require('express');
import knex from './knex/knex';
import { SetupApp } from './app';
const app = express();
knex.migrate.latest().then(() => {
SetupApp(app, knex);
const port = process.env.PORT || 5000;
app.listen(port, () => console.log(`Listening on port ${port}`));
})
export { }