1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-01-07 20:36:48 +01:00
immich/server/src/config/database.config.ts

28 lines
662 B
TypeScript
Raw Normal View History

2022-02-03 17:06:44 +01:00
import { TypeOrmModuleOptions } from '@nestjs/typeorm';
import dotenv from 'dotenv';
const result = dotenv.config();
if (result.error) {
console.log(result.error);
}
export const databaseConfig: TypeOrmModuleOptions = {
type: 'postgres',
host: 'immich_postgres',
2022-02-03 17:06:44 +01:00
port: 5432,
username: process.env.DB_USERNAME,
password: process.env.DB_PASSWORD,
database: process.env.DB_DATABASE_NAME,
2022-02-03 17:06:44 +01:00
entities: [__dirname + '/../**/*.entity.{js,ts}'],
synchronize: true,
// logging: true,
// logger: 'advanced-console',
// ssl: process.env.NODE_ENV == 'production',
// extra: {
// ssl: {
// rejectUnauthorized: false,
// },
// },
};