6290475ea3
Kommerzielle Hosting-/Abo-Plattform für Rapport-Instanzen. - React-Frontend (Vite/JSX): Landing, Register, Login, Plans, Dashboard - Node/Express-Backend: Auth (bcrypt+JWT), Stripe-Billing, Provisioning - HOST-Postgres-Schema: accounts, subscriptions, instances - Provisioning-Interface + Modell-A-Adapter (Studio im geteilten Stack) - MOCK-Modus: voller End-to-End-Flow ohne Stripe/Rapport-Stack testbar - Idempotentes Fulfillment (Upsert auf stripe_subscription_id) - docker-compose für lokale host-db; identisch auf Hetzner deploybar E2E lokal verifiziert: Register -> Checkout(mock) -> Instanz -> Idempotenz. Lizenz: proprietär (kein AGPL-Code eingebunden, nur Netzwerk-API zur Familie). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
23 lines
764 B
JavaScript
23 lines
764 B
JavaScript
// Einfacher Migrations-Runner: spielt alle server/migrations/*.sql in
|
|
// Sortier-Reihenfolge ein. Idempotent (alle Migrations nutzen IF NOT EXISTS).
|
|
import fs from "node:fs";
|
|
import path from "node:path";
|
|
import { fileURLToPath } from "node:url";
|
|
import { pool } from "./db.js";
|
|
|
|
const __dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
const dir = path.join(__dirname, "migrations");
|
|
|
|
const files = fs.readdirSync(dir).filter((f) => f.endsWith(".sql")).sort();
|
|
console.log(`→ ${files.length} Migration(en) gefunden.`);
|
|
|
|
for (const f of files) {
|
|
const sql = fs.readFileSync(path.join(dir, f), "utf8");
|
|
process.stdout.write(` ▸ ${f} … `);
|
|
await pool.query(sql);
|
|
console.log("ok");
|
|
}
|
|
|
|
console.log("✓ HOST-Schema bereit.");
|
|
await pool.end();
|