refactor(server): move host env to config repo (#13507)

* refactor(server): access host through repository

* refactor(server): access host through repository
This commit is contained in:
Jason Rasmussen 2024-10-16 18:12:13 -04:00 committed by GitHub
parent e8015dc7d7
commit 51d4899cd1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View file

@ -4,6 +4,7 @@ import { VectorExtension } from 'src/interfaces/database.interface';
export const IConfigRepository = 'IConfigRepository';
export interface EnvData {
host?: string;
port: number;
environment: ImmichEnvironment;
configFile?: string;