digital-twin-hub

command module
v0.0.0-...-555a65a Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 23, 2024 License: MIT Imports: 10 Imported by: 0

README

digital-twin-hub

A system that allows the user to create digital twins by entering a json format of options for the twin. The digital twin will connect to a physical twin and also set up a rest api that will act as a proxy for the physical twin.

Setup

Create a .env file and add,

ADDRESS=<address>
PORT=<port>

DOMAIN_ADDRESS=<address that will be registered to the service registry>
DOMAIN_PORT=<port that will be registered to the service registry>

SYSTEM_NAME=<system name>

MONGO_DB_CONNECTION_STRING=<uri to connect to a mongoDB instance>

SERVER_MODE=<what security the server uses>

SERVICE_REGISTRY_ADDRESS=<service registry address>
SERVICE_REGISTRY_PORT=<service registry port>
SERVICE_REGISTRY_IMPLEMENTATION=<service registry implementation>

DIGITAL_TWIN_REGISTRY_ADDRESS=<digital twin registry address>
DIGITAL_TWIN_REGISTRY_PORT=<digital twin registry port>
DIGITAL_TWIN_REGISTRY_IMPLEMENTATION=<digital twin registry implementation>

CERT_FILE_PATH=<path to cert .pem file>
KEY_FILE_PATH=<path to key .pem file>
TRUSTSTORE_FILE_PATH=<path to truststore .pem file>
AUTHENTICATION_INFO=<authentication info>

EVENT_HANDLER_ADDRESS=<address to event handler>
EVENT_HANDLER_PORT=<port to event handler>
EVENT_HANDLER_DOMAIN_ADDRESS=<event handler address that will be registerd to the service registry>
EVENT_HANDLER_DOMAIN_PORT=<event handler address that will be registered to the service registry>
EVENT_HANDLER_IMPLEMENTATION=<event handler implementation>
  • ADDRESS: defines what address the system will start on.

  • PORT: defines what port the system will start on.

  • DOMAIN_ADDRESS: defines what address the system will register in the service registry.

  • DOMAIN_PORT: defines what port the system will register in the service registry.

  • SYSTEM_NAME: defines what name the system will use to register in the service registry.

  • MONGO_DB_CONNECTION_STRING: connection uri of a mongoDB instance that will be connected to. Here data about running digital twins will be stored.

  • SERVER_MODE: what security the server uses. Currently these are implemented,

    • unsecure: http is used for all communications.
    • secure: https is used for all communications. Also CERT_FILE_PATH, KEY_FILE_PATH and TRUSTSTORE_FILE_PATH is recuired if this is enabled.
  • SERVICE_REGISTRY_ADDRESS: address of the service registry that will be used to register this system.

  • SERVICE_REGISTRY_PORT: port of the service registry that will be used to register this system.

  • SERVICE_REGISTRY_IMPLEMENTATION: the type of service registry that will be used. Currently these are implemented,

    • serviceregistry-arrowhead-4.6.1: uses the service registry of arrowhead version 4.6.1
  • DIGITAL_TWIN_REGISTRY_ADDRESS: address of the digital twin registry that will be used to register all digital twins.

  • DIGITAL_TWIN_REGISTRY_PORT: port of the digital twin registry that will be used to register all digital twins.

  • DIGITAL_TWIN_REGISTRY_IMPLEMENTATION: the type of digital twin registry that will be used. Currently these are implemented,

    • digital-twin-registry-arrowhead-4.6.1: uses the service registry of arrowhead version 4.6.1 as a digital twin registry.
  • CERT_FILE_PATH: path to cert .pem file, that will be used in setting up ssl communication. This is necessary if the system uses secure mode.

  • KEY_FILE_PATH: path to key .pem file, that will be used in setting up ssl communication. This is necessary if the system uses secure mode.

  • TRUSTSTORE_FILE_PATH: path to truststore .pem file, this defines what systems to trust.This is necessary if the system uses secure mode.

  • AUTHENTICATION_INFO: authentication info is the public key of the cert file. Used with arrowhead to give the public key to other systems.

  • EVENT_HANDLER_ADDRESS: address to the event handler that the digital twin will publish events to.

  • EVENT_HANDLER_PORT: port to the event handler that the digital twin will publish events to.

  • EVENT_HANDLER_DOMAIN_ADDRESS: event handler address that will be registerd to the service registry, this will be used when a subscriber connects to the event exchange.

  • EVENT_HANDLER_DOMAIN_PORT: event handler port that will be registerd to the service registry, this will be used when a subscriber connects to the event exchange.

  • EVENT_HANDLER_IMPLEMENTATION: the used implementation of an event handler, currently only "rabbitmq-3.12.12" exists.

Documentation

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
Package docs Code generated by swaggo/swag.
Package docs Code generated by swaggo/swag.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL