Skip to content

Commit e3f1ada

Browse files
init: scaffold (apps + shared logger stub, scripts, .gitignore)
0 parents  commit e3f1ada

File tree

6 files changed

+451
-0
lines changed

6 files changed

+451
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
logs/
3+
.DS_Store

apps/log-analyzer/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/usr/bin/env node
2+
console.log('Log Analyzer: каркас готов (парсинг и CLI-фильтры добавим на шаге 3).');

apps/log-generator/index.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/usr/bin/env node
2+
import Logger from '../../shared/logger.js';
3+
const logger = new Logger();
4+
console.log('Log Generator: каркас готов (реализацию таймеров добавим на шаге 2).');

0 commit comments

Comments
 (0)