* 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>
13 lines
300 B
TypeScript
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;
|