7 lines
277 B
Plaintext
Executable File
7 lines
277 B
Plaintext
Executable File
const path = require('path');
|
|
module.exports = {
|
|
"config": path.resolve("src", "db", "db.config.js"),
|
|
"models-path": path.resolve("src", "db", "models"),
|
|
"seeders-path": path.resolve("src", "db", "seeders"),
|
|
"migrations-path": path.resolve("src", "db", "migrations")
|
|
}; |