feat: Allow specifying custom TLS certificate, key and CA

This commit is contained in:
Jesse Wierzbinski 2024-04-17 15:53:42 -10:00
parent a37e8e92c5
commit 633e92d4e9
No known key found for this signature in database
6 changed files with 63 additions and 20 deletions

View file

@ -6,16 +6,16 @@ export default {
out: "./drizzle",
schema: "./drizzle/schema.ts",
dbCredentials: {
host: "localhost",
/* host: "localhost",
port: 40000,
user: "lysand",
password: "lysand",
database: "lysand",
/* host: config.database.host,
database: "lysand", */
host: config.database.host,
port: Number(config.database.port),
user: config.database.username,
password: config.database.password,
database: config.database.database, */
database: config.database.database,
},
// Print all statements
verbose: true,