Skip to content

Commit

Permalink
feat: initialize issuance domain (#1)
Browse files Browse the repository at this point in the history
* feat: add issuance structure

* feat: implement Credential aggregate handle

* test: dummy handle implementation

* feat: add CredentialTemplateCreated event

* feat: add agent_store

* test: add integration test

* feat: add jsonschema dep

* feat: add JSONschema's

* feat: add queries agent_api and agent_application

* refactor: move handlers to agent_issuance

* refactor: rename resources folder

* chore: add workspace

* refactor: move api code to crate

* ci: add docker files

* chore: clean up deps, define workspace deps, add basic crate descriptions

* style: set lines max_width to 120

* WIP: generic app state

* WIP: revert, complete oas3

* feat: configure db connection string through env variable

* WIP

* feat: add events on start up, remove schema validation, add default template

* refactor: rename, extract create_credential function

* docs: remove draft

---------

Co-authored-by: nanderstabel <nander.stabel@impierce.com>
  • Loading branch information
daniel-mader and nanderstabel authored Nov 22, 2023
1 parent e905c7a commit 1b944ee
Show file tree
Hide file tree
Showing 43 changed files with 16,376 additions and 0 deletions.
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

0 comments on commit 1b944ee

Please sign in to comment.