Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View ZohebMOPO's full-sized avatar
💭
Mystery

Zoheb Alli Khan ZohebMOPO

💭
Mystery
View GitHub Profile
@ZohebMOPO
ZohebMOPO / ormconfig.yml
Last active April 1, 2022 04:11
my typeorm config
default: # default connection
type: "postgres"
host: "localhost"
port: 5432
username: "root"
password: "postgres"
database: "cool-app"
synchronize: true
logging: false
entities: ["src/entity/**/*.ts"]