rallly/apps/web/src/utils/constants.ts
2023-09-11 15:34:55 +01:00

14 lines
432 B
TypeScript

export const planIdMonthly = process.env
.NEXT_PUBLIC_PRO_PLAN_ID_MONTHLY as string;
export const planIdYearly = process.env
.NEXT_PUBLIC_PRO_PLAN_ID_YEARLY as string;
export const isSelfHosted = process.env.NEXT_PUBLIC_SELF_HOSTED === "true";
export const isFeedbackEnabled = !isSelfHosted;
export const monthlyPriceUsd = 7;
export const annualPriceUsd = 42;
export const appVersion = process.env.NEXT_PUBLIC_APP_VERSION;