mirror of
https://github.com/immich-app/immich.git
synced 2025-01-08 12:56:48 +01:00
30f499cf2e
update server to use absolute import paths
33 lines
1.3 KiB
TypeScript
33 lines
1.3 KiB
TypeScript
import { DatabaseExtension } from 'src/domain/repositories/database.repository';
|
|
import { DataSource } from 'typeorm';
|
|
import { PostgresConnectionOptions } from 'typeorm/driver/postgres/PostgresConnectionOptions.js';
|
|
|
|
const url = process.env.DB_URL;
|
|
const urlOrParts = url
|
|
? { url }
|
|
: {
|
|
host: process.env.DB_HOSTNAME || 'localhost',
|
|
port: Number.parseInt(process.env.DB_PORT || '5432'),
|
|
username: process.env.DB_USERNAME || 'postgres',
|
|
password: process.env.DB_PASSWORD || 'postgres',
|
|
database: process.env.DB_DATABASE_NAME || 'immich',
|
|
};
|
|
|
|
/* eslint unicorn/prefer-module: "off" -- We can fix this when migrating to ESM*/
|
|
export const databaseConfig: PostgresConnectionOptions = {
|
|
type: 'postgres',
|
|
entities: [__dirname + '/entities/*.entity.{js,ts}'],
|
|
synchronize: false,
|
|
migrations: [__dirname + '/migrations/*.{js,ts}'],
|
|
subscribers: [__dirname + '/subscribers/*.{js,ts}'],
|
|
migrationsRun: false,
|
|
connectTimeoutMS: 10_000, // 10 seconds
|
|
parseInt8: true,
|
|
...urlOrParts,
|
|
};
|
|
|
|
// this export is used by TypeORM commands in package.json#scripts
|
|
export const dataSource = new DataSource(databaseConfig);
|
|
|
|
export const vectorExt =
|
|
process.env.DB_VECTOR_EXTENSION === 'pgvector' ? DatabaseExtension.VECTOR : DatabaseExtension.VECTORS;
|