amical/apps/desktop/drizzle.config.ts
Haritabh f5686d45be
Feat/updated settings layout (#38)
* wip: updating settings layout

* most issues resolved

* settings layout revamped

* fix:multiple unrequired toast on formatter settings resolved

* feat: updated ai-models tabs to extract common components and logic

* chore: formatting fix

* chore: code cleanup

* fix: forward navigation handling

* fix: model selections ux

* fix: vocabulary update flow

* chore: update lang list

* chore: cleanup migrations

* fix: invalid drag class on back buttont

* chore: swap to tanstack router

* fix: history navigation

* chore: clean up + models unification

* chore: cleanup migrations

* refactor: settings deep merges

---------

Co-authored-by: amadeus-x1 <45001978+amadeus-x1@users.noreply.github.com>
2025-09-10 01:16:12 +05:30

13 lines
300 B
TypeScript

import type { Config } from "drizzle-kit";
import * as path from "path";
const dbPath = path.join(process.cwd(), "amical.db");
export default {
schema: "./src/db/schema.ts",
out: "./src/db/migrations",
dialect: "sqlite",
dbCredentials: {
url: `file:${dbPath}`,
},
} satisfies Config;