Убрал копирование public папки из dockerfile. Вернул валидацию на количество тегов, присылаемых с node-red. Вернул чтение .env переменной при локальном запуске.

This commit is contained in:
Первов Артем
2026-06-19 11:10:51 +03:00
parent 9b53f602ce
commit d00f79f4d3
4 changed files with 22 additions and 5 deletions

View File

@@ -3,9 +3,9 @@
"private": true,
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"dev": "tsx watch --env-file=.env src/index.ts",
"build": "tsc",
"start": "node dist/index.js"
"start": "node --env-file=.env dist/index.js"
},
"dependencies": {
"mqtt": "^5.15.1",