1
0
Fork 0
mirror of synced 2024-09-30 17:18:14 +13:00
budibase/packages/server/index.js

6 lines
205 B
JavaScript
Raw Normal View History

2019-06-14 21:05:46 +12:00
const app = require("./app");
const config = require("./config");
2019-07-09 18:29:50 +12:00
const buildAppContext = require("./initialise/buildAppContext");
2019-06-08 01:18:10 +12:00
2019-07-09 18:29:50 +12:00
buildAppContext(config, true)
.then((appContext) => app(appContext));