Path: blob/master/src/packages/util/consts/billing.ts
5750 views
/*1* This file is part of CoCalc: Copyright © 2020 Sagemath, Inc.2* License: MS-RSL – see LICENSE.md for details3*/45const ONE_HOUR_MS = 60 * 60 * 1000;6export const ONE_DAY_MS = 24 * ONE_HOUR_MS;7export const AVG_MONTH_DAYS = 30.5;8export const AVG_YEAR_DAYS = 12 * AVG_MONTH_DAYS;9export const ONE_MONTH_MS = AVG_MONTH_DAYS * ONE_DAY_MS;1011// throughout the UI, we show this price as the minimum (per month)12// It is nice if it is vague enough to match price changes.13export const LICENSE_MIN_PRICE = "a few $ per month";1415// Trial Banner in the UI16export const EVALUATION_PERIOD_DAYS = 3;17export const BANNER_NON_DISMISSIBLE_DAYS = 7;1819// The "standard license" disk size.20// used in next/store and student-pay21// Aug 2025: changed from 3 to 10 GB in anticipation of the new file server22// However, the actual presets are capped at the maximum disk size.23// That disk max is in util/upgrades/consts.ts24export const STANDARD_DISK = 10;252627