* Global search scaffold * Add search preview text * Add generic fallback for preview text in search * fixup! Add generic fallback for preview text in search * Add more tweaks * fixup! Add more tweaks * Fix an issue with criteria * fixup! Fix an issue with criteria * fixup! fixup! Fix an issue with criteria * fixup! fixup! fixup! Fix an issue with criteria * Fix an issue with priority filter * fixup! Fix an issue with priority filter * Add sortable pins * fixup! Add sortable pins * Make options collapsed by default * Tweak UI * Add tests * Add translations * Add more translations * fixup! Add more translations * Add minor tweaks
8 lines
277 B
Text
8 lines
277 B
Text
const path = require('path');
|
|
|
|
module.exports = {
|
|
'config': path.resolve('backend', 'config', 'database.js'),
|
|
'models-path': path.resolve('backend', 'models'),
|
|
'seeders-path': path.resolve('backend', 'seeders'),
|
|
'migrations-path': path.resolve('migrations')
|
|
};
|