7 lines
193 B
Text
7 lines
193 B
Text
|
|
const path = require("path");
|
||
|
|
|
||
|
|
module.exports = {
|
||
|
|
config: path.resolve("src", "back", "database", "config.js"),
|
||
|
|
"migrations-path": path.resolve("src", "back", "database", "migrations"),
|
||
|
|
};
|