-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env
64 lines (40 loc) · 1.75 KB
/
.env
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
### University Frontend #######################################################
UNIVERSITY_FRONTEND_PORT=8080
### University Backend/API ####################################################
UNIVERSITY_APIPLATFORM_PORT=8084
### Aries configurations ######################################################
AGENT_REST_IMAGE=ghcr.io/hyperledger/aries-framework-go
#AGENT_REST_IMAGE=docker.pkg.github.com/krakenh2020/edupilotfrontend/agent-rest
AGENT_REST_IMAGE_TAG=0.1.8
# HTTP Resolver Configurations
HTTP_DID_RESOLVER=ebsi@https://api.preprod.ebsi.eu/did-registry/v2/identifiers,web@https://resolver.prod.ari-bip.eu/1.0/identifiers,elem@https://resolver.prod.ari-bip.eu/1.0/identifiers
# Transport Schemes
HTTP_SCHEME=http
WS_SCHEME=ws
# Aries Framework Configurations
TRANSPORT_RETURN_OPTION_ALL=all
DEFAULT_KEY_TYPE=ED25519
DEFAULT_KEY_AGREEMENT_TYPE=X25519ECDHKW
# Remote JSON-LD context provider configuration
CONTEXT_PROVIDER=context
CONTEXT_PROVIDER_URL=https://context.prod.ari-bip.eu/agent-startup-contexts.json
# Webhook configurations
SAMPLE_WEBHOOK_IMAGE=docker.pkg.github.com/krakenh2020/edupilotfrontend/sample-webhook
#SAMPLE_WEBHOOK_IMAGE=aries-framework-go/sample-webhook
SAMPLE_WEBHOOK_IMAGE_TAG=latest
# University Aries Agent
UNIVERSITY_HOST=0.0.0.0
UNIVERSITY_INBOUND_PORT=8081
UNIVERSITY_API_PORT=8082
UNIVERSITY_WEBHOOK_CONTAINER_NAME=webhook.university-agent.demo
UNIVERSITY_WEBHOOK_HOST=0.0.0.0
UNIVERSITY_WEBHOOK_PORT=8083
UNIVERSITY_API_HOST=http://agent.university-agent.demo:8082
# Student Aries Agent
STUDENT_HOST=0.0.0.0
STUDENT_INBOUND_PORT=8091
STUDENT_API_PORT=8092
STUDENT_WEBHOOK_CONTAINER_NAME=webhook.student-agent.demo
STUDENT_WEBHOOK_HOST=0.0.0.0
STUDENT_WEBHOOK_PORT=8093
STUDENT_API_HOST=http://agent.student-agent.demo:8092