refactor(server): build support env (#13163)

This commit is contained in:
Jason Rasmussen 2024-10-03 16:33:43 -04:00 committed by GitHub
parent 3ddb5b8733
commit 0eb77147ef
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 36 additions and 18 deletions

View file

@ -9,6 +9,22 @@ export interface EnvData {
configFile?: string;
logLevel?: LogLevel;
buildMetadata: {
build?: string;
buildUrl?: string;
buildImage?: string;
buildImageUrl?: string;
repository?: string;
repositoryUrl?: string;
sourceRef?: string;
sourceCommit?: string;
sourceUrl?: string;
thirdPartySourceUrl?: string;
thirdPartyBugFeatureUrl?: string;
thirdPartyDocumentationUrl?: string;
thirdPartySupportUrl?: string;
};
database: {
skipMigrations: boolean;
vectorExtension: VectorExtension;