Skip to content

Instantly share code, notes, and snippets.

View gabrielSouzaDevWeb's full-sized avatar
🏠
Working from home

Gabriel Souza gabrielSouzaDevWeb

🏠
Working from home
View GitHub Profile
@gabrielSouzaDevWeb
gabrielSouzaDevWeb / ormconfig.js
Created March 30, 2022 13:11 — forked from pookdeveloper/ormconfig.js
typeORM ormconfig.js
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,