add rules to gitignore

This commit is contained in:
2026-05-13 20:13:11 +03:00
parent 0b108bf4a0
commit 45812d32e3
2 changed files with 8 additions and 2 deletions

6
.gitignore vendored
View File

@@ -31,3 +31,9 @@ context/config.js
# generated data json file # generated data json file
data.json data.json
# generated import.jsonl
import.jsonl
# generated data
data

View File

@@ -1,7 +1,7 @@
const bunyan = require('bunyan') const bunyan = require('bunyan')
module.exports = bunyan.createLogger({ module.exports = bunyan.createLogger({
name: 'mm-etl', name: 'loop-etl-rocketchat',
streams: [ streams: [
{ {
level: 'info', level: 'info',
@@ -9,7 +9,7 @@ module.exports = bunyan.createLogger({
}, },
{ {
level: 'info', level: 'info',
path: 'mm-etl.log' path: 'loop-etl-rocketchat.log'
} }
] ]
}) })