This commit is contained in:
Morten Olsen
2024-01-11 09:03:14 +01:00
commit 676a7e09b5
97 changed files with 8291 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
import { Knex } from 'knex';
type Config = {
database: Omit<Knex.Config, 'migrations'>;
files: {
location: string;
};
auth?: {
oidc?: {
issuer: string;
login?: {
clientId: string;
clientSecret: string;
};
};
};
};
export type { Config };