feat: harden podman deployment orchestration

This commit is contained in:
Yahya Alhinai
2026-06-28 01:44:26 +00:00
parent 5185845090
commit c818d5081e
37 changed files with 1796 additions and 273 deletions
+5 -2
View File
@@ -3,12 +3,15 @@
"version": "0.0.0",
"private": true,
"type": "module",
"main": "./dist/index.js",
"main": "./dist/server.js",
"scripts": {
"dev": "tsx watch src/server.ts",
"dev": "pnpm run dev:server",
"dev:server": "tsx watch src/server.ts",
"dev:agent": "tsx watch src/agent.ts",
"start": "node dist/server.js",
"start:server": "node dist/server.js",
"start:agent": "node dist/agent.js",
"start:all": "node dist/hermes.js",
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit"
},