Files
edr-platform/apps/edr-hr-api/src/data-source.ts
2026-08-25 00:11:39 +03:00

9 lines
327 B
TypeScript

import "dotenv/config";
import { DataSource } from "typeorm";
import { buildHrMigrationDataSourceOptions } from "./config/database.config";
/** Standalone DataSource for the TypeORM CLI and the migrate script. */
export const AppDataSource = new DataSource(buildHrMigrationDataSourceOptions());
export default AppDataSource;