Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 763 Bytes

README.md

File metadata and controls

35 lines (28 loc) · 763 Bytes

Keys-Server

API Guide

For API see WalletConnect Docs

Running Locally

Setup:

  • Install rust;
  • Install docker;
  • Install just;
  • Copy the env file:
    $ cp .env.example .env
  • Fill .env file with necessary values

Running the keys-server:

$ source .env # make sure the env variables are set
$ just run

Running the docker-compose set up (MongoDB + MongoExpress + Jaeger + Keys-Server):

$ source .env # make sure the env variables are set
$ just build-docker
$ just run-docker

Running tests:

$ just test