20 lines
841 B
TypeScript
20 lines
841 B
TypeScript
import { Schema } from "effect"
|
|
import { PositiveInt } from "@opencode-ai/core/schema"
|
|
|
|
export const Server = Schema.Struct({
|
|
port: Schema.optional(PositiveInt).annotate({
|
|
description: "Port to listen on",
|
|
}),
|
|
hostname: Schema.optional(Schema.String).annotate({ description: "Hostname to listen on" }),
|
|
mdns: Schema.optional(Schema.Boolean).annotate({ description: "Enable mDNS service discovery" }),
|
|
mdnsDomain: Schema.optional(Schema.String).annotate({
|
|
description: "Custom domain name for mDNS service (default: opencode.local)",
|
|
}),
|
|
cors: Schema.optional(Schema.mutable(Schema.Array(Schema.String))).annotate({
|
|
description: "Additional domains to allow for CORS",
|
|
}),
|
|
}).annotate({ identifier: "ServerConfig" })
|
|
export type Server = Schema.Schema.Type<typeof Server>
|
|
|
|
export * as ConfigServer from "./server"
|