feat: Live-Paper-Engine — 5-min-Loop, API, Dashboard, Dockerfile

processCycle spiegelt Runner-Semantik exakt (Paritätstest gegen runBacktest),
Restart-Recovery über Cursor, DecisionLog mit Outcome-Backfill,
Bun.serve-API + statisches Dashboard, Deploy-Ziel trading.kuns.dev.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
2026-06-10 06:11:44 +00:00
parent c5d71bba74
commit 29846e82a7
10 changed files with 858 additions and 0 deletions

View File

@@ -2,6 +2,7 @@ import { z } from 'zod';
const Env = z.object({
DATABASE_URL: z.string().url(),
PORT: z.coerce.number().default(8080),
});
export const env = Env.parse(process.env);