mirror of
https://github.com/versia-pub/server.git
synced 2026-04-27 20:59:15 +02:00
refactor(database): 🚚 Rename Application to Client everywhere
This commit is contained in:
parent
6f97903f3b
commit
1a0a27bee1
25 changed files with 2549 additions and 90 deletions
|
|
@ -1,4 +1,4 @@
|
|||
//import { config } from "@versia-server/config";
|
||||
import { config } from "@versia-server/config";
|
||||
import type { Config } from "drizzle-kit";
|
||||
|
||||
/**
|
||||
|
|
@ -10,16 +10,16 @@ export default {
|
|||
out: "./packages/kit/tables/migrations",
|
||||
schema: "./packages/kit/tables/schema.ts",
|
||||
dbCredentials: {
|
||||
host: "localhost",
|
||||
/* host: "localhost",
|
||||
port: 40000,
|
||||
user: "lysand",
|
||||
password: "lysand",
|
||||
database: "lysand",
|
||||
/* host: config.postgres.host,
|
||||
database: "lysand", */
|
||||
host: config.postgres.host,
|
||||
port: config.postgres.port,
|
||||
user: config.postgres.username,
|
||||
password: config.postgres.password,
|
||||
database: config.postgres.database, */
|
||||
database: config.postgres.database,
|
||||
},
|
||||
// Print all statements
|
||||
verbose: true,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue