refactor: use env variables and update project structure

This commit is contained in:
AyrisAI
2026-05-14 17:55:32 +03:00
parent 17395698ec
commit 9624a4f45d
6 changed files with 282 additions and 0 deletions

22
package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "ayristech-worker",
"version": "1.0.0",
"description": "",
"main": "dist/apps/worker/main.js",
"scripts": {
"build": "tsc",
"start": "node dist/apps/worker/main.js",
"dev": "tsx apps/worker/main.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"ioredis": "^5.10.1"
},
"devDependencies": {
"@types/node": "^25.7.0",
"typescript": "^6.0.3"
}
}