f8b120c0aa
The on-demand "Read" grade model is RETIRED. A scheduled pipeline pre-grades the
slate, locks grades to the line, tracks movement; the dashboard shows them already
there. Orchestrates existing services — nothing rebuilt.
- snapshotService.runSnapshot(sport): getOdds → gradeAndCacheSlate → classify
archetype per player → lock gradedAt → line deltas vs previous snapshot → write
snapshot:{sport}:latest/previous + grades:{sport} → ticker events. Fully
injectable, zero-network unit tests. runAllSnapshots = cron entrypoint.
- Internal trigger POST /api/internal/snapshot/:sport + /all (requireInternalAuth).
In-process cron (SNAPSHOT_CRON=1, UTC 14,19,22,1,3) in server.js, no new dep.
- Public reads: GET /api/snapshot/:sport (cache-only) + GET /api/ticker (merges
TICKER_MANUAL pins) + Next proxies.
- GameCard swap: live Slate renders vyndr/GameCard (legacy kept for types only),
overlays locked grades onto game props → player name once + archetype badge +
"Graded Xh ago at -115 · Current 2.5 · ▲ TOWARD +1.0". Ungraded → "Awaiting next
scan", NO Read button. On-demand onGrade flow deleted.
- Ticker polls /api/ticker every 30s, graceful fallback to hardcoded items.
- NBA/WNBA: espnStatsAdapter free fallback (defensive parse → found:false on shape
mismatch) wired into resolvePlayerStats after the offline Python service.
Env: PROPLINE_API_KEY_1/2/3, VYNDR_INTERNAL_KEY, SNAPSHOT_CRON=1, TICKER_MANUAL.
Backend 2061 -> 2100 tests (+39), 173 suites. Web build clean (exit 0).
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
34 lines
1.6 KiB
JavaScript
34 lines
1.6 KiB
JavaScript
const app = require('./app');
|
|
// Session 20 — surface which providers are actually configured at
|
|
// boot. A silently-missing key (e.g. ODDSPAPI_KEY unset in prod)
|
|
// otherwise only manifests when the gateway tries to fall over and
|
|
// finds no chain.
|
|
const { getConfiguredProviders, listProviderIds } = require('./config/providers');
|
|
// Session 24 — warm the Tank01 cache after boot so streaks / hot lists /
|
|
// game lines have data on the first page load. Non-blocking; see module.
|
|
const { scheduleStartupPrefetch } = require('./startupPrefetch');
|
|
// Session 45 — in-process snapshot cron (gated on SNAPSHOT_CRON=1).
|
|
const { startSnapshotScheduler } = require('./snapshotScheduler');
|
|
|
|
// Default 3001 — Next.js owns 3000 locally and in production. The poller,
|
|
// internal cron, and BASE_URL conventions all assume 3001 for the Express
|
|
// backend. PORT env still overrides for special-case deploys.
|
|
const PORT = process.env.PORT || 3001;
|
|
|
|
app.listen(PORT, () => {
|
|
console.log(`[VYNDR] Server running on port ${PORT}`);
|
|
const configured = getConfiguredProviders();
|
|
const missing = listProviderIds().filter((id) => !configured.find((c) => c.id === id));
|
|
console.log(`[VYNDR] providers configured (${configured.length}): ${configured.map((c) => c.id).join(', ') || 'none'}`);
|
|
if (missing.length) {
|
|
console.warn(`[VYNDR] providers missing keys: ${missing.join(', ')}`);
|
|
}
|
|
|
|
// Session 24 — fire-and-forget cache warm. 5s delay so Redis is ready.
|
|
// Skips itself when RAPID_API_KEY is unset; never blocks or crashes boot.
|
|
scheduleStartupPrefetch();
|
|
|
|
// Session 45 — arm the snapshot cron (no-op unless SNAPSHOT_CRON=1).
|
|
startSnapshotScheduler();
|
|
});
|