dotnet-etcd

(β˜… 296)

A C# .NET (dotnet) GRPC client for etcd v3 +

  • .gitattributes
  • .gitignore
  • .markdownlint-cli2.json
  • .whitesource
  • CODE_OF_CONDUCT.md
  • CONTRIBUTING.md
  • dotnet-etcd.sln
  • LICENSE
  • PULL_REQUEST_TEMPLATE.md
  • README.md
  • run-unit-tests-with-coverage.sh
  • TESTING.md

# Installation Guide

1. Get the code
git clone https://github.com/shubhamranjan/dotnet-etcd

Downloads the entire project code from GitHub to your computer.

cd dotnet-etcd

Moves into the project folder you just downloaded.

2. Docker

Easy Recommended
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker compose -f dotnet-etcd.Tests/docker-compose.yml up -d --build

Runs the command against the services defined in the compose file.

βœ… Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.

3. .NET

Medium
Prerequisites
  • Git Needed to download the project code from GitHub.
  • .NET SDK The SDK required for the dotnet command.
Install-Package dotnet-etcd

Type this command into your terminal and run it.

dotnet add package dotnet-etcd

Type this command into your terminal and run it.

paket add dotnet-etcd

Type this command into your terminal and run it.

cd dotnet-etcd.Tests

Moves into the project folder you just downloaded.

dotnet test

Type this command into your terminal and run it.

βœ… After dotnet run, check the message or address shown in the terminal.

Pulled directly from this repo's README.

// repository documentation