Files
Red-Bull-Tracker/src/vite-env.d.ts
T
Ned Halksworth cb375adbd6 swap coach table for barcode products in appwrite
replace chat collection with barcode_products table, seed verified products,
drop ollama env vars and types, prune setup docs
2026-05-27 16:40:06 +00:00

16 lines
473 B
TypeScript

/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_APPWRITE_ENDPOINT?: string;
readonly VITE_APPWRITE_PROJECT_ID?: string;
readonly VITE_APPWRITE_DATABASE_ID?: string;
readonly VITE_APPWRITE_COLLECTION_ID?: string;
readonly VITE_APPWRITE_BARCODE_COLLECTION_ID?: string;
readonly VITE_APPWRITE_OAUTH_SUCCESS_URL?: string;
readonly VITE_APPWRITE_OAUTH_FAILURE_URL?: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}