mirror of
https://github.com/immich-app/immich.git
synced 2025-01-24 04:32:45 +01:00
131caa20eb
* refactor: user repository * refactor: user module * refactor: move database into infra * refactor(cli): use user core * chore: import path * chore: tests
17 lines
648 B
TypeScript
17 lines
648 B
TypeScript
import { PostgresConnectionOptions } from 'typeorm/driver/postgres/PostgresConnectionOptions';
|
|
import { DataSource } from 'typeorm';
|
|
|
|
export const databaseConfig: PostgresConnectionOptions = {
|
|
type: 'postgres',
|
|
host: process.env.DB_HOSTNAME || 'immich_postgres',
|
|
port: parseInt(process.env.DB_PORT || '5432'),
|
|
username: process.env.DB_USERNAME,
|
|
password: process.env.DB_PASSWORD,
|
|
database: process.env.DB_DATABASE_NAME,
|
|
entities: [__dirname + '/../**/*.entity.{js,ts}'],
|
|
synchronize: false,
|
|
migrations: [__dirname + '/../migrations/*.{js,ts}'],
|
|
migrationsRun: true,
|
|
};
|
|
|
|
export const dataSource = new DataSource(databaseConfig);
|