remove typeorm files
This commit is contained in:
parent
e37462d176
commit
e8f920d373
@ -1,23 +0,0 @@
|
||||
import { ConnectionOptions } from "typeorm";
|
||||
import Entities from "../entities";
|
||||
import credentials from "./credentials";
|
||||
|
||||
const connectionOptions: ConnectionOptions = {
|
||||
type: "mssql",
|
||||
host: credentials.host,
|
||||
schema: "dbo",
|
||||
username: credentials.username,
|
||||
password: credentials.password,
|
||||
database: credentials.database,
|
||||
domain: credentials.domain,
|
||||
entities: Entities,
|
||||
synchronize: true,
|
||||
options: {
|
||||
cryptoCredentialsDetails: {
|
||||
minVersion: "TLSv1",
|
||||
},
|
||||
encrypt: false,
|
||||
},
|
||||
};
|
||||
|
||||
export default connectionOptions;
|
||||
@ -1,7 +0,0 @@
|
||||
export default {
|
||||
host: "localhost",
|
||||
username: "localuser",
|
||||
password: "123",
|
||||
domain: undefined,
|
||||
database: "",
|
||||
};
|
||||
Reference in New Issue
Block a user