mirror of
https://github.com/chenasraf/venom.git
synced 2026-05-17 17:28:08 +00:00
19 lines
385 B
JavaScript
19 lines
385 B
JavaScript
module.exports = {
|
|
command: {
|
|
templates: ['gen/command'],
|
|
subdir: false,
|
|
output: 'src/commands',
|
|
helpers: {
|
|
substring: (str, start, end) => str.substring(start, end),
|
|
},
|
|
},
|
|
services: {
|
|
templates: ['gen/services'],
|
|
subdir: false,
|
|
data: {
|
|
// eslint-disable-next-line no-undef
|
|
dbPath: process.env.MONGODB_VOLUME_PATH,
|
|
},
|
|
},
|
|
}
|