- Entferne alle überflüssigen Installations- und Konfigurationsskripte - Erstelle zwei vereinfachte Docker-Installationsskripte: - install-frontend.sh für Frontend-Installation - install-backend.sh für Backend-Installation - Verbessere Frontend Dockerfile mit besserer Unterstützung für native Dependencies - Aktualisiere Backend Dockerfile für automatische DB-Initialisierung - Korrigiere TypeScript-Fehler in personalized-cards.tsx - Erstelle env.ts für Umgebungsvariablen-Verwaltung - Füge ausführliche Installationsanleitung in INSTALL.md hinzu - Konfiguriere Docker-Compose für Host-Netzwerkmodus - Erweitere Dockerfiles mit Healthchecks für bessere Zuverlässigkeit 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
30 lines
697 B
TypeScript
30 lines
697 B
TypeScript
import type * as schema from "@/server/db/schema";
|
|
import type { BuildQueryResult, DBQueryConfig, ExtractTablesWithRelations } from "drizzle-orm";
|
|
|
|
type Schema = typeof schema;
|
|
type TSchema = ExtractTablesWithRelations<Schema>;
|
|
|
|
/**
|
|
* Infer the relation type of a table.
|
|
*/
|
|
export type IncludeRelation<TableName extends keyof TSchema> = DBQueryConfig<
|
|
"one" | "many",
|
|
boolean,
|
|
TSchema,
|
|
TSchema[TableName]
|
|
>["with"];
|
|
|
|
/**
|
|
* Infer the result type of a query with optional relations.
|
|
*/
|
|
export type InferResultType<
|
|
TableName extends keyof TSchema,
|
|
With extends IncludeRelation<TableName> | undefined = undefined,
|
|
> = BuildQueryResult<
|
|
TSchema,
|
|
TSchema[TableName],
|
|
{
|
|
with: With;
|
|
}
|
|
>;
|