SPB Git

spb/vquant Public MIT

VibeQuant — AI-powered institutional-grade financial intelligence platform.

TypeScript 84.3% Python 11.7% JavaScript 1.6% CSS 1.5% HTML 0.7%
932 B · 31 lines typescript
Raw Blame History
1/*2 * =============================================================================3 *  VibeQuant (vquant) — AI-Powered Financial Intelligence Platform4 * -----------------------------------------------------------------------------5 *  File:      drizzle.config.ts6 *7 *  Author:    Simon-Pierre Boucher8 *  Contact:   contact@spboucher.ai9 *  Website:   https://www.spboucher.ai10 *  Demo:      https://www.vquant.ai11 *  License:   MIT (see LICENSE)12 *13 *  Copyright © 2026 Simon-Pierre Boucher. All rights reserved.14 * =============================================================================15 */1617import { defineConfig } from "drizzle-kit";1819if (!process.env.DATABASE_URL) {20  throw new Error("DATABASE_URL, ensure the database is provisioned");21}2223export default defineConfig({24  out: "./migrations",25  schema: "./shared/schema.ts",26  dialect: "postgresql",27  dbCredentials: {28    url: process.env.DATABASE_URL,29  },30});31