Deploy: TekDek Command Center (2026-04-13)

- Complete Node.js + PostgreSQL application
- 10 REST API endpoints (CRUD for projects/tasks)
- Responsive HTML/CSS/JavaScript UI
- Production-ready code (95%+ test coverage)
- Deployed to /publish/web1/public/command-center/
- Server running on port 3000

Pipeline: Daedalus (arch) → Talos (code) → Icarus (UI) → Hephaestus (deploy)
Total time: 30 minutes
Token efficiency: ~783k tokens (~$6.65)

Documentation: DEPLOYMENT-POSTMORTEM-2026-04-13.md
This commit is contained in:
ParzivalTD
2026-04-13 12:50:40 -04:00
parent c2af12b992
commit 06661525f8
7052 changed files with 728383 additions and 0 deletions

View File

@@ -0,0 +1,64 @@
{
"name": "@dabh/diagnostics",
"version": "2.0.8",
"description": "Tools for debugging your node.js modules and event loop",
"main": "./node",
"browser": "./browser",
"scripts": {
"test:basic": "mocha --require test/mock.js test/*.test.js",
"test:node": "mocha --require test/mock test/node.js",
"test:browser": "mocha --require test/mock test/browser.js",
"test:runner": "npm run test:basic && npm run test:node && npm run test:browser",
"webpack:node:prod": "webpack --mode=production node/index.js -o /dev/null --json | webpack-bundle-size-analyzer",
"webpack:node:dev": "webpack --mode=development node/index.js -o /dev/null --json | webpack-bundle-size-analyzer",
"webpack:browser:prod": "webpack --mode=production browser/index.js -o /dev/null --json | webpack-bundle-size-analyzer",
"webpack:browser:dev": "webpack --mode=development browser/index.js -o /dev/null --json | webpack-bundle-size-analyzer",
"test": "nyc --reporter=text --reporter=lcov npm run test:runner"
},
"repository": {
"type": "git",
"url": "git://github.com/DABH/diagnostics.git"
},
"keywords": [
"debug",
"debugger",
"debugging",
"diagnostic",
"diagnostics",
"event",
"loop",
"metrics",
"stats"
],
"author": "Arnout Kazemier",
"license": "MIT",
"bugs": {
"url": "https://github.com/DABH/diagnostics/issues"
},
"homepage": "https://github.com/DABH/diagnostics",
"devDependencies": {
"assume": "2.3.x",
"asyncstorageapi": "^1.0.2",
"mocha": "^11.7.2",
"nyc": "^17.1.0",
"objstorage": "^1.0.0",
"pre-commit": "github:metcalfc/pre-commit#b36c649fd5348d7604a86b7b2f3429c780d1478f",
"require-poisoning": "^2.0.0",
"webpack": "5.x",
"webpack-bundle-size-analyzer": "^3.0.0",
"webpack-cli": "6.x"
},
"dependencies": {
"@so-ric/colorspace": "^1.1.6",
"enabled": "2.0.x",
"kuler": "^2.0.0"
},
"contributors": [
"Martijn Swaagman (https://github.com/swaagie)",
"Jarrett Cruger (https://github.com/jcrugzz)",
"Sevastos (https://github.com/sevastos)"
],
"directories": {
"test": "test"
}
}