refactor(server): license key env (#13162)

This commit is contained in:
Jason Rasmussen 2024-10-03 15:45:37 -04:00 committed by GitHub
parent 2c8c3651de
commit 3ddb5b8733
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 37 additions and 41 deletions

View file

@ -14,6 +14,11 @@ export interface EnvData {
vectorExtension: VectorExtension;
};
licensePublicKey: {
client: string;
server: string;
};
storage: {
ignoreMountCheckErrors: boolean;
};