mirror of
https://github.com/danswer-ai/danswer.git
synced 2025-05-30 09:40:35 +02:00
73 lines
2.5 KiB
TypeScript
73 lines
2.5 KiB
TypeScript
export type AuthType =
|
|
| "disabled"
|
|
| "basic"
|
|
| "google_oauth"
|
|
| "oidc"
|
|
| "saml"
|
|
| "cloud";
|
|
|
|
export const HOST_URL = process.env.WEB_DOMAIN || "http://127.0.0.1:3000";
|
|
export const HEADER_HEIGHT = "h-16";
|
|
export const SUB_HEADER = "h-12";
|
|
|
|
export const INTERNAL_URL = process.env.INTERNAL_URL || "http://127.0.0.1:8080";
|
|
export const NEXT_PUBLIC_DISABLE_STREAMING =
|
|
process.env.NEXT_PUBLIC_DISABLE_STREAMING?.toLowerCase() === "true";
|
|
|
|
export const NEXT_PUBLIC_DO_NOT_USE_TOGGLE_OFF_DANSWER_POWERED =
|
|
process.env.NEXT_PUBLIC_DO_NOT_USE_TOGGLE_OFF_DANSWER_POWERED?.toLowerCase() ===
|
|
"true";
|
|
|
|
export const NEXT_PUBLIC_NEW_CHAT_DIRECTS_TO_SAME_PERSONA =
|
|
process.env.NEXT_PUBLIC_NEW_CHAT_DIRECTS_TO_SAME_PERSONA?.toLowerCase() ===
|
|
"true";
|
|
|
|
export const GMAIL_AUTH_IS_ADMIN_COOKIE_NAME = "gmail_auth_is_admin";
|
|
|
|
export const GOOGLE_DRIVE_AUTH_IS_ADMIN_COOKIE_NAME =
|
|
"google_drive_auth_is_admin";
|
|
|
|
export const SEARCH_TYPE_COOKIE_NAME = "search_type";
|
|
export const AGENTIC_SEARCH_TYPE_COOKIE_NAME = "agentic_type";
|
|
|
|
export const SIDEBAR_WIDTH_CONST = "350px";
|
|
export const SIDEBAR_WIDTH = `w-[350px]`;
|
|
|
|
export const LOGOUT_DISABLED =
|
|
process.env.NEXT_PUBLIC_DISABLE_LOGOUT?.toLowerCase() === "true";
|
|
|
|
export const NEXT_PUBLIC_DEFAULT_SIDEBAR_OPEN =
|
|
process.env.NEXT_PUBLIC_DEFAULT_SIDEBAR_OPEN?.toLowerCase() === "true";
|
|
|
|
export const TOGGLED_CONNECTORS_COOKIE_NAME = "toggled_connectors";
|
|
|
|
/* Enterprise-only settings */
|
|
export const CUSTOM_REFRESH_URL = process.env.NEXT_PUBLIC_CUSTOM_REFRESH_URL;
|
|
|
|
// NOTE: this should ONLY be used on the server-side. If used client side,
|
|
// it will not be accurate (will always be false).
|
|
export const SERVER_SIDE_ONLY__PAID_ENTERPRISE_FEATURES_ENABLED =
|
|
process.env.ENABLE_PAID_ENTERPRISE_EDITION_FEATURES?.toLowerCase() === "true";
|
|
// NOTE: since this is a `NEXT_PUBLIC_` variable, it will be set at
|
|
// build-time
|
|
// TODO: consider moving this to an API call so that the api_server
|
|
// can be the single source of truth
|
|
export const EE_ENABLED =
|
|
process.env.NEXT_PUBLIC_ENABLE_PAID_EE_FEATURES?.toLowerCase() === "true";
|
|
|
|
export const CUSTOM_ANALYTICS_ENABLED = process.env.CUSTOM_ANALYTICS_SECRET_KEY
|
|
? true
|
|
: false;
|
|
|
|
export const DISABLE_LLM_DOC_RELEVANCE =
|
|
process.env.DISABLE_LLM_DOC_RELEVANCE?.toLowerCase() === "true";
|
|
|
|
export const CLOUD_ENABLED =
|
|
process.env.NEXT_PUBLIC_CLOUD_ENABLED?.toLowerCase() === "true";
|
|
|
|
export const REGISTRATION_URL =
|
|
process.env.INTERNAL_URL || "http://127.0.0.1:3001";
|
|
|
|
export const SERVER_SIDE_ONLY__CLOUD_ENABLED =
|
|
process.env.NEXT_PUBLIC_CLOUD_ENABLED?.toLowerCase() === "true";
|