-
Notifications
You must be signed in to change notification settings - Fork 2
/
platform-settings.json
50 lines (50 loc) · 1.29 KB
/
platform-settings.json
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"PlatformSettingsConfig": {
"BasicSettings": {
"Storage": "../ThingworxStorage",
"BackupStorage": "../ThingworxBackupStorage"
},
"AdministratorUserSettings": {
"InitialPassword": "Administrator12345"
},
"MetricsUserSettings": {
"InitialPassword": "Administrator12345"
},
"ExtensionPackageImportPolicy": {
"importEnabled": true,
"allowJarResources": true,
"allowJavascriptResources": true,
"allowCSSResources": true,
"allowJSONResources": true,
"allowWebAppResources": true,
"allowEntities": true,
"allowExtensibleEntities": true
},
"ContentTypeSettings": {
"supportedMediaEntityContentTypes": [
"image/svg+xml",
"image/png",
"image/gif",
"image/bmp",
"image/jpeg",
"application/pdf",
"image/vnd.microsoft.icon"
]
}
},
"PersistenceProviderPackageConfigs": {
"H2PersistenceProviderPackage": {
"ConnectionInformation": {
"password": "Administrator",
"username": "twadmin"
}
},
"PostgresPersistenceProviderPackage": {
"ConnectionInformation": {
"jdbcUrl": "jdbc:postgresql://localhost:5432/thingworx",
"password": "password",
"username": "twadmin"
}
}
}
}