mirror of
https://github.com/soconnor0919/hristudio.git
synced 2025-12-11 22:54:45 -05:00
- Add drag-and-drop experiment design capabilities using @dnd-kit libraries - Introduce new experiment-related database schema and API routes - Enhance landing page with modern design, gradients, and improved call-to-action sections - Update app sidebar to include experiments navigation - Add new dependencies for experiment design and visualization (reactflow, react-zoom-pan-pinch) - Modify study and experiment schemas to support more flexible experiment configuration - Implement initial experiment creation and management infrastructure
13 lines
252 B
TypeScript
13 lines
252 B
TypeScript
import { type Config } from "drizzle-kit";
|
|
|
|
import { env } from "~/env";
|
|
|
|
export default {
|
|
schema: "./src/server/db/schema.ts",
|
|
dialect: "postgresql",
|
|
dbCredentials: {
|
|
url: env.DATABASE_URL,
|
|
},
|
|
tablesFilter: ["hs_*"],
|
|
} satisfies Config;
|