This commit is contained in:
Dax Raad
2025-05-29 11:17:34 -04:00
parent 33a831d2be
commit 42c1cd6a85
8 changed files with 116 additions and 22 deletions

View File

@@ -1,3 +1,4 @@
import "zod-openapi/extend";
import { App } from "./app";
import { Server } from "./server/server";
import fs from "fs/promises";
@@ -15,13 +16,6 @@ cli.command("", "Start the opencode in interactive mode").action(async () => {
await App.provide({ directory: process.cwd() }, async () => {
await Share.init();
Server.listen();
Bun.spawnSync({
stderr: "inherit",
stdout: "inherit",
stdin: "inherit",
cmd: ["go", "run", "cmd/main.go"],
});
});
});