-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathenvironment.prod.ts
29 lines (29 loc) · 1.04 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
26
27
28
29
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 REST API Collection Manager
enabled: true, // if false, all components for collection management will be disabled
},
attack_website: {
// configuration for the ATT&CK Website
// https://github.com/mitre-attack/attack-website
enabled: false, // if false, attack website integration will be disabled
url: "https://attack.mitre.org"
}
}
};