summaryrefslogtreecommitdiff
path: root/extension/examples/MyProject/src/data-source.ts
blob: 07e13d2a62db9f0b10b34790e31c549e9b6744aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import "reflect-metadata";
import { DataSource } from "typeorm";
import { User } from "./entity/User";

export const AppDataSource = new DataSource({
  type: "sqlite",
  database: "database.sqlite",
  synchronize: true,
  logging: false,
  entities: [User],
  migrations: [],
  subscribers: [],
});