-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1404457
commit 9a8f173
Showing
18 changed files
with
90 additions
and
480 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
docs/docs/getting-started/_category_.json → docs/docs/examples/_category_.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"label": "Overview", | ||
"position": 2, | ||
"link": { | ||
"type": "generated-index", | ||
"description": "There are two ways of installation, you can use helm, the easiest way of deployment or you can install every single component manually." | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
sidebar_position: 3 | ||
--- | ||
|
||
# Concepts | ||
|
||
This platform has been designed to facilitate the development of digital twins and is characterised by the exclusive use of open source components. The aim is to achieve a platform that covers all the functionalities that a digital twin may require, from the most basic ones, such as simply checking its real-time state, to more advanced ones, such as the inclusion of predicted or simulated data or visualisation of 3D models of the twins. | ||
|
||
:::danger Take care | ||
|
||
This platform is currently under development, so its use in production environments is not recommended at this stage. | ||
|
||
::: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
--- | ||
sidebar_position: 1 | ||
--- | ||
|
||
# Quickstart | ||
|
||
Welcome to OpenTwins, a flexible platform adapted to your needs! Although OpenTwins offers extensive customization options, we understand the importance of simplicity for beginners. Therefore, let's embark on a short journey together, showing you the quickest route to deploy the platform and develop a simple, functional digital twin. | ||
|
||
## Prerequisites | ||
Please be sure you have the following utilities installed on your host machine: | ||
|
||
- [Docker](https://www.docker.com/) | ||
- [Kubernetes](https://kubernetes.io/releases/download/) | ||
- [Helm](https://helm.sh/docs/intro/install/) v3 | ||
|
||
If you don't have a Kubernetes cluster, you can set one up on local using [minikube](https://minikube.sigs.k8s.io/docs/). For a smooth deployment experience, we suggest you use the following minimum configuration values. | ||
|
||
```bash | ||
minikube start --cpus 4 --disk-size 40gb --memory 8192 | ||
``` | ||
```bash | ||
kubectl config use-context minikube | ||
``` | ||
|
||
## Installation | ||
The quickest way to deploy OpenTwins is [using Helm](https://helm.sh/docs/intro/using_helm/). | ||
|
||
The following command adds the ERTIS repository where the OpenTwins helm chart is located. | ||
|
||
```bash | ||
helm repo add ertis https://ertis-research.github.io/Helm-charts/ | ||
``` | ||
|
||
To deploy the platform with recommended functionality, use the command below: | ||
|
||
```bash | ||
helm upgrade --install opentwins ertis/OpenTwins -n opentwins --wait --dependency-update | ||
``` | ||
|
||
To modify the components to be deployed and connected during the installation, you can check the [installation via Helm](./installation/using-helm.md). | ||
|
||
|
||
## Define your first digital twin | ||
|
||
A digital twin is composed of static and dynamic information. | ||
|
||
## Link the digital twin to a data input | ||
|
||
## Visualize twin data |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters