Advertisement
Guest User

Untitled

a guest
Mar 28th, 2022
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import { DataSource } from "typeorm";
  2.  
  3. export const AppDataSource = new DataSource({
  4.     type: "mysql",
  5.     host: "localhost",
  6.     port: 3306,
  7.     username: "root",
  8.     password: "",
  9.     database: "cringe_bot",
  10.     synchronize: true,
  11.     logging: false,
  12.     entities: [
  13.     ],
  14.     migrations: [
  15.     ],
  16.     subscribers: [
  17.     ],
  18. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement