mirror of
https://github.com/lukevella/rallly.git
synced 2025-04-29 10:16:32 +02:00
14 lines
432 B
TypeScript
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;
|