trellis
Version:
Agentic State Engine — event-sourced causal graph with branching, decision traces, and realtime sync for AI-native applications
18 lines • 505 B
TypeScript
/**
* Shared `trellis deploy` / `trellis db deploy` handler.
*/
export interface DeployCliOptions {
name: string;
key?: string;
jwtSecret?: string;
port?: string | number;
configDir?: string;
stub?: boolean;
}
export declare function printDeploySuccess(result: {
url: string;
name: string;
apiKey: string;
}, configDir: string, stub: boolean): void;
export declare function runDeployCli(opts: DeployCliOptions): Promise<void>;
//# sourceMappingURL=deploy-cli.d.ts.map