Created
August 13, 2019 20:41
-
-
Save lrohde/dd50303b8519e353599682985960ab44 to your computer and use it in GitHub Desktop.
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
const { resolve } = require('path'); | |
module.exports = { | |
config: resolve(__dirname, 'src', 'config', 'database.js'), | |
'models-path': resolve(__dirname, 'src', 'app', 'models'), | |
'migrations-path': resolve(__dirname, 'src', 'database', 'migrations'), | |
'seeders-path': resolve(__dirname, 'src', 'database', 'seeds'), | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment