mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-27 16:40:56 +00:00
9 lines
305 B
TypeScript
9 lines
305 B
TypeScript
import "dotenv/config";
|
|
import { DataSource } from "typeorm";
|
|
import { buildDataSourceOptions } from "./config/database.config";
|
|
|
|
/** Standalone DataSource for the TypeORM CLI and the migrate script. */
|
|
export const AppDataSource = new DataSource(buildDataSourceOptions());
|
|
|
|
export default AppDataSource;
|