=== NEW === - studio/ — MCPEngine Studio scaffold (Next.js monorepo, build plan) - docs/FACTORY-V2.md — Factory v2 architecture doc - docs/CALENDLY_MCP_BUILD_SUMMARY.md — Calendly MCP build report === UPDATED SERVERS === - fieldedge: Added jobs-tools, UI build script, main entry update - lightspeed: Updated main + server entry points - squarespace: Added collection-browser + page-manager apps - toast: Added main + server entry points === INFRA === - infra/command-center/state.json — Updated pipeline state - infra/command-center/FACTORY-V2.md — Factory v2 operator playbook
12 lines
338 B
TypeScript
12 lines
338 B
TypeScript
import { drizzle } from 'drizzle-orm/neon-http';
|
|
import { neon } from '@neondatabase/serverless';
|
|
import * as schema from './schema';
|
|
|
|
const sql = neon(process.env.DATABASE_URL!);
|
|
|
|
export const db = drizzle(sql, { schema });
|
|
|
|
// Re-export everything from schema for convenience
|
|
export * from './schema';
|
|
export type Database = typeof db;
|