| 123456789101112131415161718192021 |
- import { Effect } from "effect"
- import { Service } from "@opencode-ai/client/effect/service"
- import path from "node:path"
- import { Standalone } from "../../src/services/standalone"
- process.chdir(path.join(import.meta.dir, "../../../.."))
- await Effect.runPromise(
- Effect.scoped(
- Effect.gen(function* () {
- const endpoint = yield* Standalone.start({
- command: [process.execPath, path.join(import.meta.dir, "../../src/index.ts"), "serve"],
- })
- const response = yield* Effect.promise(() =>
- fetch(new URL("/api/health", endpoint.url), { headers: Service.headers(endpoint) }),
- )
- console.log(`${endpoint.pid} ${endpoint.url} ${response.status}`)
- return yield* Effect.never
- }),
- ),
- )
|