Container-ready via docker/ compose (frontend nginx + backend Node). Compose adjusted for Coolify on the prod server: frontend uses expose:80 (no host binding — host 8080 is taken by the Coolify proxy; Traefik routes visigine.de), backend ALLOWED_ORIGINS=https://visigine.de. Secrets stay in server/.env (git-ignored); see server/.env.example. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
24 lines
755 B
JavaScript
24 lines
755 B
JavaScript
// Orchestrates all check groups. Async groups run in parallel; sync groups append.
|
|
import { runAiBotsChecks } from './ai-bots.js'
|
|
import { runLlmsChecks } from './llms-txt.js'
|
|
import { runJsonLdChecks } from './json-ld.js'
|
|
import { runMetaChecks } from './meta-tags.js'
|
|
import { runTechnicalChecks } from './technical.js'
|
|
import { runAiReachabilityChecks } from './ai-reachability.js'
|
|
|
|
export async function runAllChecks(context) {
|
|
const [llms, technical, aiReach] = await Promise.all([
|
|
runLlmsChecks(context),
|
|
runTechnicalChecks(context),
|
|
runAiReachabilityChecks(context),
|
|
])
|
|
return [
|
|
...runAiBotsChecks(context),
|
|
...llms,
|
|
...runJsonLdChecks(context),
|
|
...runMetaChecks(context),
|
|
...technical,
|
|
...aiReach,
|
|
]
|
|
}
|