-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenvironment.prod.ts
25 lines (25 loc) · 1.05 KB
/
environment.prod.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { NgxLoggerLevel } from 'ngx-logger'
export const environment = {
production: true,
log_level: NgxLoggerLevel.ERROR,
recommended_indexes: [ //recommended collection indexes shown to user if they have no indexes loaded
{
"name": "MITRE ATT&CK", //index name
"url": "https://raw.githubusercontent.com/mitre-attack/attack-stix-data/master/index.json" //index url
}
],
integrations: {
rest_api: {
// configuration for the ATT&CK Workbench REST API
// https://github.com/center-for-threat-informed-defense/attack-workbench-rest-api
enabled: true, // MUST be true for application operation
url: "api"
},
collection_manager: {
// configuration for the ATT&CK Workbench Collection Manager
// https://github.com/center-for-threat-informed-defense/attack-workbench-collection-manager
enabled: true, //if false, all systems for collection management will be disabled
url: "cm-api"
}
}
};