mirror of
https://github.com/geoffsee/open-gsio.git
synced 2025-09-08 22:56:46 +00:00

Update README deployment steps and add deploy:secrets script to package.json update local inference script and README update lockfile reconfigure package scripts for development update test execution pass server tests Update README with revised Bun commands and workspace details remove pnpm package manager designator create bun server
11 lines
205 B
TypeScript
11 lines
205 B
TypeScript
// handles builds the server into js
|
|
await Bun.build({
|
|
entrypoints: [
|
|
"./server.ts",
|
|
],
|
|
outdir: './build',
|
|
minify: true,
|
|
target: 'node',
|
|
splitting: true,
|
|
throw: true
|
|
}); |