- 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
17 lines
436 B
JavaScript
Executable File
17 lines
436 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
const cli = require('../lib/cli');
|
|
const nodemon = require('../lib/');
|
|
const options = cli.parse(process.argv);
|
|
|
|
nodemon(options);
|
|
|
|
const fs = require('fs');
|
|
|
|
// checks for available update and returns an instance
|
|
const pkg = JSON.parse(fs.readFileSync(__dirname + '/../package.json'));
|
|
|
|
if (pkg.version.indexOf('0.0.0') !== 0 && options.noUpdateNotifier !== true) {
|
|
require('simple-update-notifier')({ pkg });
|
|
}
|