13 lines
331 B
TypeScript
13 lines
331 B
TypeScript
const fixPath = require("fix-path")
|
|
const { checkDevelopmentEnvironment } = require("./utilities/fileSystem")
|
|
|
|
function runServer() {
|
|
// this will shutdown the system if development environment not ready
|
|
// will print an error explaining what to do
|
|
checkDevelopmentEnvironment()
|
|
fixPath()
|
|
require("./app")
|
|
}
|
|
|
|
runServer()
|