Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
31d28a8
feat: refactor DID document handling to use a centralized database re…
Hermann-Core Jun 20, 2025
9e3b349
feat: implement in-memory store for OOB messages and refactor handler…
Hermann-Core Jun 20, 2025
3e65e24
refactor: remove filesystem dependency and update DID document handli…
Hermann-Core Jun 20, 2025
580a210
refactor: remove filesystem module and its dependencies
Hermann-Core Jun 20, 2025
35647ac
refactor: update Dockerfile and docker-compose.yml for improved build…
Hermann-Core Jun 20, 2025
22fa154
refactor: remove filesystem dependency from workspace
Hermann-Core Jun 20, 2025
d926f1a
refactor: move global allocator definition for Jemalloc to improve me…
Hermann-Core Jun 20, 2025
e0dbc10
refactor: update dependencies
Hermann-Core Jun 20, 2025
d8feca7
style: apply code formatting
Hermann-Core Jun 20, 2025
0a691e7
Merge remote-tracking branch 'origin/main' into 399-add-a-centralized…
Hermann-Core Jun 20, 2025
9dd7fab
refactor: remove unused DashMap import
Hermann-Core Jun 20, 2025
8ebf2d0
refactor: remove obsolete version specification from docker-compose.yml
Hermann-Core Jun 20, 2025
5aa44c7
refactor: remove unused dependencies from Cargo.toml files
Hermann-Core Jun 20, 2025
8ce3623
Merge remote-tracking branch 'origin/main' into 399-add-a-centralized…
Hermann-Core Jun 30, 2025
8f1ab89
fix: fix deps conflicts in the lock file
Hermann-Core Jun 30, 2025
5665954
fix: apply clippy suggestions
Hermann-Core Jun 30, 2025
54d560c
docs: update README to clarify project setup and environmental variables
Hermann-Core Jul 4, 2025
b32c407
fix: update docker-compose to add LocalStack service for AWS Secrets …
Hermann-Core Jul 4, 2025
26de86e
fix: update test configuration and encoding for DID keys
Hermann-Core Jul 4, 2025
ef10f63
refactor: add base64 encoding for verification methods and verificati…
Hermann-Core Jul 4, 2025
2026af9
fix: update dotenv-flow loading to handle errors gracefully
Hermann-Core Jul 4, 2025
147a769
style: apply code formatting
Hermann-Core Jul 4, 2025
4963c05
fix: remove base64 dependency from multiple various Cargo.toml files
Hermann-Core Jul 4, 2025
dbdb123
fix: sanitize secret names in AWS Secrets Manager operations
Hermann-Core Jul 4, 2025
7d8ccab
fix: resolve regressions added by the latest changes
Hermann-Core Jul 4, 2025
a9f0b5d
feat: add example environment configuration file
Hermann-Core Jul 4, 2025
86ca689
fix: remove STORAGE_DIRPATH from environment variables in deployment …
Awambeng Jul 11, 2025
65c0953
Merge pull request #413 from adorsys/remove-unused-vars
Awambeng Jul 11, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Server configuration
SERVER_PUBLIC_DOMAIN=https://example.com
SERVER_LOCAL_PORT=3000
MONGO_URI=mongodb://mongodb:27017/
MONGO_DBN=didcomm-mediator

# AWS configuration
AWS_ACCESS_KEY_ID=test
AWS_SECRET_ACCESS_KEY=test
AWS_REGION=us-east-1
AWS_ENDPOINT_URL=http://localstack:4566 # Should be removed in production
2 changes: 0 additions & 2 deletions .github/scripts/test_config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,8 @@
cat <<EOL > .env.example
SERVER_PUBLIC_DOMAIN=https://example.com
SERVER_LOCAL_PORT=3000
STORAGE_DIRPATH=test/storage
MONGO_URI=mongodb://localhost:27017/
MONGO_DBN=didcomm-mediator
MASTER_KEY=1234567890qwertyuiopasdfghjklxzc
EOL

echo ".env.example file created successfully!"
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ test/

# Environment variables files
.env
.env.example


# Reference crate
Expand Down
Loading
Loading