Files
speckle-server/packages/monitor-deployment/src/bin.ts
T

10 lines
178 B
TypeScript

import '@/bootstrap.js' // This has side-effects and has to be imported first
import { startServer } from '@/server/server.js'
const start = () => {
startServer()
}
start()