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.
24 lines
671 B
24 lines
671 B
const express = require('express'); |
|
|
|
import knex from './knex/knex'; |
|
import { SetupApp } from './app'; |
|
|
|
const app = express(); |
|
|
|
knex.migrate.latest().then(() => { |
|
const port = process.env.PORT || 5000; |
|
const apiBase = process.env.API || ""; |
|
const frontEndPrefix = process.env.FRONTEND_PREFIX || undefined; |
|
const frontEnd = process.env.FRONTEND || undefined; |
|
|
|
SetupApp(app, knex, apiBase); |
|
|
|
if(frontEnd && frontEndPrefix) { |
|
console.log(`Hosting front-end ${frontEnd} at ${frontEndPrefix}.`) |
|
app.use(frontEndPrefix, express.static(frontEnd)) |
|
} |
|
|
|
app.listen(port, () => console.log(`Listening on port ${port}`)); |
|
}) |
|
|
|
export { } |