You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import * as path from 'path';
|
|
|
|
|
|
|
|
export const ANALYTICS_PATH = path.join(__dirname, '../../analytics');
|
|
|
|
|
|
|
|
export const DATA_PATH = path.join(__dirname, '../../data');
|
|
|
|
|
|
|
|
export const DATASETS_PATH = path.join(DATA_PATH, 'datasets');
|
|
|
|
export const ANOMALIES_PATH = path.join(DATA_PATH, 'anomalies');
|
|
|
|
export const MODELS_PATH = path.join(DATA_PATH, 'models');
|
|
|
|
export const METRICS_PATH = path.join(DATA_PATH, 'metrics');
|
|
|
|
export const SEGMENTS_PATH = path.join(DATA_PATH, 'segments');
|
|
|
|
|