Created
December 4, 2019 00:50
-
-
Save MMortari/e3e93074c8436884c33e4e67fccf38c1 to your computer and use it in GitHub Desktop.
Sequelize File
This file contains hidden or 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
const path = require('path'); | |
module.exports = { | |
config: path.resolve(__dirname, 'src', 'config', 'database.js'), | |
'models-path': path.resolve(__dirname, 'src', 'app', 'models'), | |
'migrations-path': path.resolve(__dirname, 'src', 'database', 'migrations'), | |
'seeders-path': path.resolve(__dirname, 'src', 'database', 'seeds'), | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment