Skip to content

Commit

Permalink
restructure (probably needs more changes, let's see what the workflow…
Browse files Browse the repository at this point in the history
…s think)
  • Loading branch information
wilyle committed Mar 18, 2024
1 parent f208373 commit 51a9952
Show file tree
Hide file tree
Showing 31 changed files with 5 additions and 93 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# The default resolver for workspaces is different than for regular packages, so use v2 to avoid warnings
resolver = "2"
members = [
"cloud_connectors/azure/mqtt_connector",
"cloud_connectors/mqtt_connector",
"freyja_apps/e2e",
"freyja_apps/ibeji_integration",
"freyja_apps/in_memory",
Expand Down
27 changes: 0 additions & 27 deletions cloud_connectors/azure/Dockerfile.dt_connector.amd64

This file was deleted.

27 changes: 0 additions & 27 deletions cloud_connectors/azure/Dockerfile.dt_connector.arm64

This file was deleted.

22 changes: 0 additions & 22 deletions cloud_connectors/azure/container/scripts/container_startup.sh

This file was deleted.

File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,6 @@ The steps below will guide you on manually deploying the Azure Digital Twins res

#### Automated Deployment

Before starting this section, please view [Prerequisites for Automated Deployment of Azure Resources](../README.md#prerequisites-for-automated-deployment-of-azure-resources).

1. Sign in with Azure CLI. Follow the prompts after entering the following command.

```shell
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
12 changes: 1 addition & 11 deletions container/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,7 @@ information on how to build and run supported applications in a container.

### Freyja Cloud Connectors

To containerize the
[Azure Digitals Twin Cloud Connector](../cloud_connectors/azure/digital_twins_connector/README.md)
use one of the following dockerfiles:

- [cloud_connectors/azure/Dockerfile.dt_connector.amd64](../cloud_connectors/azure/Dockerfile.dt_connector.amd64) -
For x86-64 architecture.
- [cloud_connectors/azure/Dockerfile.dt_connector.arm64](../cloud_connectors/azure/Dockerfile.dt_connector.arm64) -
For aarch64 architecture.

See [Docker Containers](#docker-containers) or [Podman Containers](#podman-containers) for
information on how to build and run supported applications in a container.
The sample cloud connectors do not currently support containerization.

## Configuration Overrides

Expand Down
2 changes: 1 addition & 1 deletion freyja_apps/e2e/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# End-To-End Freyja Example Application

This Freyja Example Application utilizes the [Ibeji Digital Twin Adapter](https://github.com/eclipse-ibeji/freyja/tree/main/adapters/digital_twin/ibeji_adapter/) and the [Standard GRPC Cloud Adapter](https://github.com/eclipse-ibeji/freyja/tree/main/adapters/cloud/grpc_cloud_adapter/) to show a minimal end-to-end example of how to sync data from the vehicle to the cloud.
This Freyja Example Application utilizes the [Standard GRPC Digital Twin Adapter](https://github.com/eclipse-ibeji/freyja/tree/main/adapters/digital_twin/grpc_digital_twin_adapter/) configured to connect to Ibeji and the [Standard GRPC Cloud Adapter](https://github.com/eclipse-ibeji/freyja/tree/main/adapters/cloud/grpc_cloud_adapter/) to show a minimal end-to-end example of how to sync data from the vehicle to the cloud.

## Build and Run

Expand Down
2 changes: 1 addition & 1 deletion freyja_apps/ibeji_integration/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Freyja-Ibeji Integration Example Application

This Freyja Example Application utilizes the [Ibeji Digital Twin Adapter](https://github.com/eclipse-ibeji/freyja/tree/main/adapters/digital_twin/ibeji_adapter) and an in-memory mock cloud connector adapter to show a minimal connected local example of how to retrieve data from the vehicle.
This Freyja Example Application utilizes the [Standard GRPC Digital Twin Adapter](https://github.com/eclipse-ibeji/freyja/tree/main/adapters/digital_twin/grpc_digital_twin_adapter/) configured to connect to Ibeji, as well as the in-memory mock mapping service and cloud connector adapter to show a minimal connected local example of how to retrieve data from the vehicle.

## Build and Run

Expand Down
2 changes: 1 addition & 1 deletion freyja_apps/template/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This is a template for creating a Freyja application. For more information about
To create your own Freyja application, you can copy this template and make the following changes:

1. Choose the adapters to use. Freyja requires users to select a Cloud Adapter, a Digital Twin Adapter, a Mapping Adapter, at least one Data Adapter Factory, and at least one Service Discovery Adapter. Some potential choices are:
1. Freyja-provided adapters. These are enumerated in [Appendix A of the Freyja quickstart documentation](https://github.com/eclipse-ibeji/freyja/blob/main/docs/tutorials/quickstart.md#appendix-a).
1. Freyja-provided adapters. These are enumerated in [Appendix A of the Freyja custom adapters documentation](https://github.com/eclipse-ibeji/freyja/blob/main/docs/tutorials/custom-adapters.md#appendix-a).
1. A custom adapter implementation. For more information on how to write and use these, see the see the [Freyja custom adapter documentation](https://github.com/eclipse-ibeji/freyja/blob/main/docs/tutorials/custom-adapters.md).
1. Edit `Cargo.template.toml`:
1. Add dependencies for the package(s) you need for your adapters. You can implement adapters in the same crate and import their dependencies here, or you can implement them in separate crates and import those.
Expand Down

0 comments on commit 51a9952

Please sign in to comment.