1
0
Fork 0
mirror of synced 2024-09-19 02:39:37 +12:00
budibase/packages/server/src/index.ts

16 lines
453 B
TypeScript
Raw Normal View History

import { bootstrap } from "global-agent"
import { checkDevelopmentEnvironment } from "./utilities/fileSystem"
2020-06-16 04:06:54 +12:00
function runServer() {
// this will shutdown the system if development environment not ready
// will print an error explaining what to do
checkDevelopmentEnvironment()
2023-10-04 10:45:39 +13:00
// this will setup http and https proxies form env variables
process.env.GLOBAL_AGENT_FORCE_GLOBAL_AGENT = "false"
bootstrap()
2020-07-17 01:27:27 +12:00
require("./app")
2020-06-16 04:06:54 +12:00
}
2020-07-17 02:19:46 +12:00
runServer()