kaneo (minimalist kanban) fork to experiment adding a tangled integration github.com/usekaneo/kaneo
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 9a620ba2f31238f03cd28f1da5ef3838d67e4e8a 15 lines 377 B view raw
1import { config } from "dotenv-mono"; 2import { type Config, defineConfig } from "drizzle-kit"; 3 4config(); 5 6export default defineConfig({ 7 out: "./drizzle", 8 schema: "./src/database/schema.ts", 9 dialect: "postgresql", 10 dbCredentials: { 11 url: 12 process.env.DATABASE_URL || 13 "postgresql://kaneo_user:kaneo_password@localhost:5432/kaneo", 14 }, 15}) satisfies Config;