jbilcke-hf's picture
jbilcke-hf HF staff
working on AI Tube search engine
b8c4528
raw
history blame
No virus
549 Bytes
import { Credentials } from "@/huggingface/hub/src"
export const adminApiKey = `${process.env.ADMIN_HUGGING_FACE_API_TOKEN || ""}`
export const adminUsername = `${process.env.ADMIN_HUGGING_FACE_USERNAME || ""}`
export const adminCredentials: Credentials = { accessToken: adminApiKey }
export const redisUrl = `${process.env.UPSTASH_REDIS_REST_URL || ""}`
export const redisToken = `${process.env.UPSTASH_REDIS_REST_TOKEN || ""}`
export const developerMode = `${
process.env.NEXT_PUBLIC_DEVELOPER_MODE || ""
}`.trim().toLowerCase() === "true"