- 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
24 lines
479 B
JavaScript
24 lines
479 B
JavaScript
var errorCode = process.argv[2];
|
|
var max = process.argv[3];
|
|
var modes = process.argv.slice(4);
|
|
|
|
function stdout(message) {
|
|
if (modes.indexOf('stdout') === -1) { return; }
|
|
process.stdout.write('stdout ' + message + '\n');
|
|
}
|
|
|
|
function stderr(message) {
|
|
if (modes.indexOf('stderr') === -1) { return; }
|
|
process.stderr.write('stderr ' + message + '\n');
|
|
}
|
|
|
|
for (var i = 0; i < max; i++) {
|
|
stdout(i);
|
|
stderr(i);
|
|
}
|
|
|
|
process.exit(errorCode);
|
|
|
|
stdout('fail');
|
|
stderr('fail');
|