feat: add notifications system with alert engine, email, scheduler, and traffic services

This commit is contained in:
2026-04-02 04:05:41 +00:00
parent ac49f0a542
commit 34a8121acc
23 changed files with 2238 additions and 540 deletions

View File

@@ -3,17 +3,15 @@
"configurations": [
{
"name": "backend",
"runtimeExecutable": "npx",
"runtimeArgs": ["tsx", "src/index.ts"],
"port": 3001,
"cwd": "server"
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "--workspace=server", "dev"],
"port": 3002
},
{
"name": "frontend",
"runtimeExecutable": "npx",
"runtimeArgs": ["vite", "--port", "5173"],
"port": 5173,
"cwd": "client"
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "--workspace=client", "dev"],
"port": 5173
}
]
}