CodeIssuesDiscussionsWikiPull RequestsProjectsCommitsActionsReleasesContributorsPulse● GatesSecuritySettingsDeploymentsPipelineInsightsAgents✨ Explain✨ Ask AI✨ Workspace✨ Spec✨ Tests▓ Debt Map✨ NL Search🏛 Archaeology
Blame · Line-by-line history
drizzle.config.ts
Each line is annotated with the commit that last touched it. Click any SHA to jump to that commit and see the surrounding change.
| fc1817a | 1 | import { defineConfig } from "drizzle-kit"; |
| 2 | ||
| 3 | export default defineConfig({ | |
| 4 | schema: "./src/db/schema.ts", | |
| 5 | out: "./drizzle", | |
| 6 | dialect: "postgresql", | |
| 7 | dbCredentials: { | |
| 8 | url: process.env.DATABASE_URL!, | |
| 9 | }, | |
| 10 | }); |