Skip to content

Commit 173f56c

Browse files
authored
Merge pull request #2 from fluidos-project/dev
New updates to fluidos-idm
2 parents 4e4b416 + 368552a commit 173f56c

File tree

17 files changed

+554
-61
lines changed

17 files changed

+554
-61
lines changed

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,9 +313,11 @@ clean-build:
313313
clean-fixtures:
314314
@rm -Rf ./test/bdd/fixtures/keys/tls
315315
@rm -Rf ./test/bdd/fixtures/demo/openapi/specs
316-
@cd test/bdd/fixtures/demo/openapi && docker-compose down 2> /dev/null
317316
@cd test/bdd/fixtures/sidetree-mock && docker-compose down 2> /dev/null
317+
@cd test/bdd/fixtures/demo/openapi && docker-compose down 2> /dev/null
318318
@cd test/bdd/fixtures/agent-rest && docker-compose down 2> /dev/null
319+
320+
319321

320322
.PHONY: clean-fixtures-no-build
321323
clean-fixtures-no-build:

deploy/agent-rest/.env

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,15 @@ DEFAULT_MEDIA_TYPE_PROFILES=didcomm/v2,didcomm/aip2;env=rfc19,didcomm/aip2;env=r
2727
DEFAULT_KEY_TYPE=ED25519
2828
DEFAULT_KEY_AGREEMENT_TYPE=X25519ECDHKW
2929

30+
31+
32+
# Third agent configurations
33+
THIRD_HOST=0.0.0.0
34+
THIRD_INBOUND_PORT=7081
35+
THIRD_API_PORT=7082
36+
THIRD_DEBUG_PORT=3000
37+
38+
3039
# Holder agent configurations
3140
HOLDER_HOST=0.0.0.0
3241
HOLDER_INBOUND_PORT=8081
@@ -40,6 +49,10 @@ ISSUER_API_PORT=9082
4049
ISSUER_DEBUG_PORT=5000
4150

4251

52+
# Third webhook configurations
53+
THIRD_WEBHOOK_CONTAINER_NAME=third
54+
THIRD_WEBHOOK_HOST=0.0.0.0
55+
THIRD_WEBHOOK_PORT=7083
4356

4457
# Holder webhook configurations
4558
HOLDER_WEBHOOK_CONTAINER_NAME=holder

deploy/demo/openapi/.env

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@
1212
# Demo Agent API hosts
1313
DEVICE_API_HOST=localhost:8082
1414
ISSUER_API_HOST=localhost:9082
15+
THIRD_API_HOST=localhost:7082

deploy/demo/openapi/docker-compose.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,19 @@ services:
3333
networks:
3434
- test
3535

36+
third:
37+
container_name: third-swagger
38+
image: swaggerapi/swagger-ui
39+
environment:
40+
- SWAGGER_JSON=/specs/openapi-${THIRD_API_HOST}.yml
41+
- BASE_URL=/openapi
42+
ports:
43+
- 7089:8080
44+
volumes:
45+
- ./specs:/specs
46+
networks:
47+
- test
48+
3649

3750
networks:
3851
test:

0 commit comments

Comments
 (0)