Harmony
  • Manage Your Team's Projects
  • Overview
    • ✨Features
    • ⬇️Source code
    • 🛣️Roadmap
    • 🔃Changelog
    • 🔥Technology
  • Configuration
    • ⚙️Dependencies
      • 💾Databases
        • SQL Server
        • PostgreSQL
        • MongoDB Server
        • Redis
      • 📬RabbitMQ
      • 🚀gRPC
      • 🔎Search Engine
      • 📧Email provider
      • 🗃️Caching
      • 📀Installations
    • 🏃‍♂️Before running
    • 🐳Docker
      • ☸️Kubernetes
      • 📝Distributed logging
    • 🚢Deployment
  • Integrations
    • GitHub
  • Guide
    • 🌐Workspaces
      • ➕Create
      • 👥Members
    • 🧮Kanban
    • 🎯Scrum
      • ➕Create
      • 📝Backlog
      • 🎯Sprints
    • 📋Boards
      • 📊Board lists
      • 🟧Cards
        • ➕Create
        • 👁️View
        • ✅Check lists
        • 👥Assign members
        • 🏷️Add labels
        • 📅Add dates
        • 🗃️Attachments
        • 🗣️Comments
        • 🔴Archive
      • 👥Members
    • 💫Automations
      • Sync parent and child tasks
      • Smart auto-assign
      • Sum up story points
Powered by GitBook
On this page
  1. Configuration
  2. Dependencies

gRPC

gRPC is a high-performance Remote Procedure Call (RPC) framework and it's being used for internal microservice communication. More specifically:

  • Harmony.Api exposes gRPC to other services in order to access the harmony database

  • Harmony.Automations exposes gRPC to Harmony.Api in order to access the MongoDB automations database.

Configurations

Each application that consumes a gRPC service needs to know the endpoint of the application that exposes the service.

Harmony.Api

Harmony.Api consumes the gRPC service exposed by the Harmony.Automations. Set the AppEndpointConfiguration in the appsettings.json.

"AppEndpointConfiguration": {
    "AutomationEndpoint": "https://localhost:7277/",
    "FrontendUrl": "https://localhost:7096"
  },

The AutomationEndpoint is the actuall Harmony.Automations endpoint used when the app is started.

Harmony.Automations & Harmony.Notifications

Both of Harmony.Automations & Harmony.Notifications services consume the gRPC service exposed by the Harmony.Api. Set the AppEndpointConfiguration in their appsettings.json file.

  "AppEndpointConfiguration": {
    "HarmonyApiEndpoint": "https://localhost:7097/"
  },

Production

In case you deploy Harmony on a production environment don't forget to set the corresponding AppEndpointConfiguration configurations in all the appsettings.Production.json files

Read next - Configure a search engine (optional)

Last updated 1 year ago

⚙️
🚀
🔎Search Engine