Last active
March 30, 2022 13:11
-
-
Save pookdeveloper/634135447950341d5d0fb70e9c1f3785 to your computer and use it in GitHub Desktop.
typeORM ormconfig.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
"type": "mysql", | |
"host": process.env.HOST_BBDD || "localhost", | |
"port": process.env.PORT_BBDD || 3306, | |
"username": process.env.USER_BBDD || "root", | |
"password": process.env.PASSWORD_BBDD || "admin", | |
"database": process.env.DATABASE_BBDD || "mydatabase", | |
"synchronize": false, | |
"logging": true, | |
"entities": [ | |
"common/entity/**/*.ts" | |
], | |
"migrations": [ | |
"common/migration/**/*.ts" | |
], | |
"subscribers": [ | |
"common/subscriber/**/*.ts" | |
], | |
"cli": { | |
"entitiesDir": "common/entity", | |
"migrationsDir": "common/migration", | |
"subscribersDir": "common/subscriber" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment