Skip to content

Commit e5e6ca2

Browse files
authored
Merge pull request #402 from adorsys/399-add-a-centralized-storage-for-the-mediator-did-document
399 add a centralized storage for the mediator did document
2 parents c883c1b + 65c0953 commit e5e6ca2

File tree

48 files changed

+1451
-1612
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+1451
-1612
lines changed

.env.example

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Server configuration
2+
SERVER_PUBLIC_DOMAIN=https://example.com
3+
SERVER_LOCAL_PORT=3000
4+
MONGO_URI=mongodb://mongodb:27017/
5+
MONGO_DBN=didcomm-mediator
6+
7+
# AWS configuration
8+
AWS_ACCESS_KEY_ID=test
9+
AWS_SECRET_ACCESS_KEY=test
10+
AWS_REGION=us-east-1
11+
AWS_ENDPOINT_URL=http://localstack:4566 # Should be removed in production

.github/scripts/test_config.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,8 @@
44
cat <<EOL > .env.example
55
SERVER_PUBLIC_DOMAIN=https://example.com
66
SERVER_LOCAL_PORT=3000
7-
STORAGE_DIRPATH=test/storage
87
MONGO_URI=mongodb://localhost:27017/
98
MONGO_DBN=didcomm-mediator
10-
MASTER_KEY=1234567890qwertyuiopasdfghjklxzc
119
EOL
1210

1311
echo ".env.example file created successfully!"

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ test/
3333

3434
# Environment variables files
3535
.env
36-
.env.example
3736

3837

3938
# Reference crate

0 commit comments

Comments
 (0)