Installation
Before you start
The Digita platform can be easily installed through Docker. Therefore, make sure you have a Docker deamon installed on your machine.
The Docker images are hosted on a private repository. Contact your Digita-representative to get access. |
Starting the platform
The Digita-platform was built with modularity in mind. The only mandatory component is the REST API, which can be started as follows.
docker pull ghcr.io/digita-ai/dgt-platform-api:0.2.0
docker run -p 3000:3000 ghcr.io/digita-ai/dgt-platform-api:0.2.0
Optionally, you can deploy a web interface. It can be used to browse the data stored by the platform, as well as configure its behaviour.
docker pull ghcr.io/digita-ai/dgt-platform-web:0.2.0
docker run -p 80:4200 ghcr.io/digita-ai/dgt-platform-web:0.2.0