refactor(server): db env (#13167)

This commit is contained in:
Jason Rasmussen 2024-10-03 17:48:40 -04:00 committed by GitHub
parent e2bf6808ca
commit 3ac00b0ffa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 84 additions and 31 deletions

View file

@ -10,6 +10,12 @@ const envData: EnvData = {
buildMetadata: {},
database: {
host: 'database',
port: 5432,
username: 'postgres',
password: 'postgres',
name: 'immich',
skipMigrations: false,
vectorExtension: DatabaseExtension.VECTORS,
},