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

reown-com/keys-server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

e6d18d2 · Apr 17, 2024
Mar 17, 2024
Aug 22, 2023
Apr 17, 2024
Mar 25, 2024
Feb 5, 2024
Aug 22, 2023
May 12, 2023
Sep 14, 2023
Aug 22, 2023
Apr 17, 2024
Apr 17, 2024
Apr 17, 2024
Aug 22, 2023
Jun 16, 2022
Aug 24, 2023
Jan 23, 2023
Mar 15, 2024
Oct 2, 2023

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