feat: add direct PostgreSQL and ACK deployment support

This commit is contained in:
2026-08-12 19:12:00 +08:00
parent d0192081c7
commit c44274f098
55 changed files with 3317 additions and 1064 deletions

View File

@@ -0,0 +1,9 @@
import type { Pool } from "pg";
export function getScriptDataBackend(env?: NodeJS.ProcessEnv): "local" | "postgres";
export function createPostgresPool(options?: {
env?: NodeJS.ProcessEnv;
applicationName?: string;
}): Pool;
export function closePostgresPool(pool?: Pool): Promise<void>;
export function quotePostgresIdentifier(value: string): string;