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/project/consts.ts
Views: 687
1
/*
2
* This file is part of CoCalc: Copyright © 2022 Sagemath, Inc.
3
* License: MS-RSL – see LICENSE.md for details
4
*/
5
6
// static values for monitoring and project information
7
8
import { uuid } from "@cocalc/util/misc";
9
10
// uniquely identify this instance of the local hub
11
export const session_id = uuid();
12
13
// record when this instance started
14
export const start_ts = Date.now();
15
16