Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: initialize issuance domain #1

Merged
merged 23 commits into from
Nov 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
19375e7
feat: add issuance structure
nanderstabel Nov 14, 2023
b50f442
feat: implement Credential aggregate handle
nanderstabel Nov 14, 2023
ab0e181
test: dummy handle implementation
nanderstabel Nov 14, 2023
61b820e
feat: add CredentialTemplateCreated event
nanderstabel Nov 14, 2023
90789fc
feat: add agent_store
nanderstabel Nov 15, 2023
7de3fd5
test: add integration test
nanderstabel Nov 15, 2023
7f451d5
feat: add jsonschema dep
nanderstabel Nov 15, 2023
978cecb
feat: add JSONschema's
nanderstabel Nov 15, 2023
ccebf98
feat: add queries agent_api and agent_application
nanderstabel Nov 19, 2023
3910986
refactor: move handlers to agent_issuance
nanderstabel Nov 20, 2023
c8aaffc
refactor: rename resources folder
daniel-mader Nov 20, 2023
e794a4e
chore: add workspace
daniel-mader Nov 20, 2023
71d67c1
refactor: move api code to crate
daniel-mader Nov 20, 2023
0bfd82c
ci: add docker files
daniel-mader Nov 20, 2023
57df29b
chore: clean up deps, define workspace deps, add basic crate descript…
daniel-mader Nov 20, 2023
cf8bae2
style: set lines max_width to 120
daniel-mader Nov 20, 2023
66190ce
WIP: generic app state
daniel-mader Nov 21, 2023
9e39496
WIP: revert, complete oas3
daniel-mader Nov 21, 2023
338f036
feat: configure db connection string through env variable
daniel-mader Nov 21, 2023
69a4821
WIP
daniel-mader Nov 21, 2023
7e64e86
feat: add events on start up, remove schema validation, add default t…
daniel-mader Nov 21, 2023
400b19e
refactor: rename, extract create_credential function
daniel-mader Nov 22, 2023
ceb2130
docs: remove draft
daniel-mader Nov 22, 2023
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
1 change: 1 addition & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
AGENT_STORE_DB_CONNECTION_STRING=postgresql://demo_user:demo_pass@localhost:5432/demo
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
**/target/
.cargo

**/*.env
!**/.env.example
Loading