Nicholai 16cee69250 __Admin dashboard scaffolded with D1 database and R2 file uploads__
This commit implements the core admin dashboard functionality including NextAuth authentication, Cloudflare D1 database integration with complete schema, and Cloudflare R2 file upload system for portfolio images. Features include artist management, appointment scheduling, and data migration capabilities.
2025-09-17 16:08:34 -06:00

20 lines
481 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "flushAndExit", {
enumerable: true,
get: function() {
return flushAndExit;
}
});
const _shared = require("../trace/shared");
async function flushAndExit(code) {
let telemetry = _shared.traceGlobals.get("telemetry");
if (telemetry) {
await telemetry.flush();
}
process.exit(code);
}
//# sourceMappingURL=flush-and-exit.js.map