Skip to content

Latest commit

 

History

History
41 lines (27 loc) · 1.15 KB

README.md

File metadata and controls

41 lines (27 loc) · 1.15 KB

Zcoin Tokens Manager

Continuous Integration codecov Total alerts Language grade: C#

This is a service to provide rich API for manage tokens on Zcoin Exodus Protocol.

Development

Requirements

  • .NET Core 2.2

Build

dotnet build src/Ztm.sln

Start Required Services

You need to install Docker Compose first then run:

docker-compose up -d

Migrate Database Schemas

Change directory to src/Ztm.Data.Entity.Postgres then run:

ZTM_MAIN_DATABASE="Host=127.0.0.1;Database=postgres;Username=postgres" dotnet ef database update

Start Web API

dotnet run -p src/Ztm.WebApi