Skip to content

Files

Latest commit

77aa559 · Oct 11, 2022

History

History
24 lines (19 loc) · 717 Bytes

README.md

File metadata and controls

24 lines (19 loc) · 717 Bytes

Installation

git clone [email protected]:obada-foundation/example-client-system reference-design
cd reference-design
make deps
make deploy/local

Containers

Four docker containers

  • reference-design - Application written in PHP / Laravel.
  • db - A relational database (MySQL)
  • nginx - Front-end is a a web UI using Nginx and vue.js.
  • client-helper-application - Provides connection to node.

Create public and private keys for signing and verifying

docker run -it --rm -v $(pwd)/keys:/root/keys alpine:3.15 sh -c " apk add openssl openssl genpkey -algorithm ED25519 | tee /root/keys/test.pem openssl pkey -in /root/keys/test.pem -pubout | tee /root/keys/85bb2165-90e1-4134-af3e-90a4a0e1e2c1.pem "