Skip to content

Microservice to manage identity keys and invite keys for Chat SDK

License

Notifications You must be signed in to change notification settings

WalletConnect/keys-server

Repository files navigation

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