mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-02 09:45:00 +00:00
Full-featured pastebin application with: - Next.js frontend with TypeScript - Express backend with SQLite/PostgreSQL - Syntax highlighting for 100+ languages - Code quality validation system - Comprehensive accessibility (WCAG compliance) - Docker deployment configuration - Playwright E2E tests - Jest unit tests This provides a standalone web application that can be integrated as a capability module in the Universal Platform. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
21 lines
406 B
JavaScript
21 lines
406 B
JavaScript
#!/usr/bin/env node
|
|
|
|
import { QualityValidator } from './src/lib/quality-validator/index.js';
|
|
|
|
async function main() {
|
|
const validator = new QualityValidator();
|
|
|
|
const options = {
|
|
format: 'console',
|
|
verbose: true,
|
|
};
|
|
|
|
const exitCode = await validator.validate(options);
|
|
process.exit(exitCode);
|
|
}
|
|
|
|
main().catch(err => {
|
|
console.error('Fatal error:', err.message);
|
|
process.exit(1);
|
|
});
|