mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-26 18:42:49 +00:00
9 lines
275 B
TypeScript
9 lines
275 B
TypeScript
// apps/edr-freight-api/src/data-source.ts
|
|
import "dotenv/config";
|
|
import { DataSource } from "typeorm";
|
|
import { buildDataSourceOptions } from "./config/database.config";
|
|
|
|
export const AppDataSource = new DataSource(buildDataSourceOptions());
|
|
|
|
export default AppDataSource;
|