CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
sagemathinc

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/util/licenses/purchase/student-pay.ts
Views: 687
1
import type { PurchaseInfo } from "./types";
2
import dayjs from "dayjs";
3
4
export const DEFAULT_PURCHASE_INFO = {
5
type: "quota",
6
user: "academic",
7
upgrade: "custom",
8
quantity: 1,
9
subscription: "no",
10
custom_cpu: 1,
11
custom_dedicated_cpu: 0,
12
custom_ram: 4,
13
custom_dedicated_ram: 0,
14
custom_disk: 3,
15
custom_member: true,
16
custom_uptime: "short",
17
start: new Date(),
18
end: dayjs().add(3, "month").toDate(),
19
} as PurchaseInfo;
20
21