-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
67 lines (67 loc) · 2.06 KB
/
manifest.json
File metadata and controls
67 lines (67 loc) · 2.06 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"$schema": "https://json.schemastore.org/aspire-8.0.json",
"resources": {
"il2-node": {
"type": "container.v0",
"connectionString": "https://{il2-node.bindings.rest.host}:{il2-node.bindings.rest.port}",
"image": "il2-slim-node:latest",
"bindMounts": [
{
"source": "C:/ProgramData/AuditedTransactionsSystem",
"target": "/app/data",
"readOnly": false
}
],
"env": {
"INTERLOCKLEDGER_PUBLIC_NODE_ADDRESS": "il2-node",
"INTERLOCKLEDGER_CLIENTNAME": "client",
"INTERLOCKLEDGER_CERTIFICATE_PASSWORD": "node_password",
"IL2MAKE_PASSWORD_CERT": "client_password",
"IL2MAKE_PASSWORD_EMERGENCYKEY": "emergency_password",
"IL2MAKE_PASSWORD_MANAGER": "manager_password",
"IL2MAKE_PASSWORD_OWNER": "owner_password"
},
"bindings": {
"rest": {
"scheme": "https",
"protocol": "tcp",
"transport": "http",
"targetPort": 32032
},
"p2p": {
"scheme": "ilkl-mainnet",
"protocol": "tcp",
"transport": "tcp",
"targetPort": 32033,
"external": true
}
}
},
"webfrontend": {
"type": "project.v0",
"path": "AuditedTransactionsSystem.Web/AuditedTransactionsSystem.Web.csproj",
"env": {
"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES": "true",
"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES": "true",
"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY": "in_memory",
"ASPNETCORE_FORWARDEDHEADERS_ENABLED": "true",
"HTTP_PORTS": "{webfrontend.bindings.http.targetPort}",
"ConnectionStrings__il2-node": "{il2-node.connectionString}"
},
"bindings": {
"http": {
"scheme": "http",
"protocol": "tcp",
"transport": "http",
"external": true
},
"https": {
"scheme": "https",
"protocol": "tcp",
"transport": "http",
"external": true
}
}
}
}
}