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.
16 lines
394 B
16 lines
394 B
const express = require('express'); |
|
|
|
const environment = process.env.ENVIRONMENT || 'development' |
|
const knexConfig = require('knexfile.js')[environment]; |
|
const knex = require('knex')(knexConfig); |
|
|
|
import { SetupApp } from './app'; |
|
|
|
const app = express(); |
|
|
|
SetupApp(app, knex); |
|
|
|
const port = process.env.PORT || 5000; |
|
app.listen(port, () => console.log(`Listening on port ${port}`)); |
|
|
|
export { } |