This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
devicehub-teal/README.md

96 lines
4.0 KiB
Markdown
Raw Normal View History

2023-09-28 06:18:24 +00:00
# Devicehub
2023-09-28 14:37:02 +00:00
Devicehub is a distributed IT Asset Management System focused on reusing digital devices, created under the project [eReuse.org](https://www.ereuse.org)
2023-09-28 06:18:24 +00:00
This README explains how to install and use Devicehub. [The documentation](http://devicehub.ereuse.org) explains the concepts and the API.
Devicehub is built with [Teal](https://github.com/ereuse/teal) and [Flask](http://flask.pocoo.org).
# Installing
2023-09-28 14:37:02 +00:00
Please visit the [Manual Installation](README_MANUAL_INSTALLATION.md) to understand the detailed steps to install it locally or deploy it on a server.
2023-09-28 06:18:24 +00:00
# Docker
2023-09-28 14:37:02 +00:00
There is a Docker compose file for an automated deployment. In the next steps, we can see how to run and use it.
2023-09-28 06:18:24 +00:00
1. Download the sources:
```
git clone https://github.com/eReuse/devicehub-teal.git
cd devicehub-teal
```
2023-09-28 14:37:02 +00:00
2. You need to decide on one directory in your system for sharing documents between your system and the dockers.
As an example we use "/tmp/dhub/" and need to create it:
2023-09-28 06:18:24 +00:00
```
mkdir /tmp/dhub
```
2023-09-28 14:37:02 +00:00
3. If you want to initialize your DeviceHub instance with sample device snapshop you can copy your snapshots, copy your snapshots in this directory. If you don't have any snapshots copy one of the example directory. Otherwise, the device inventory of your DeviceHub instance will be empty and ready to add new devices. To register new devices, the [workbench software](https://github.com/eReuse/workbench) can be run on a device to generate a hardware snapshot that can be uploaded to your DeviceHub instance.
2023-09-28 06:18:24 +00:00
3. Copy your snapshots in this directory. If you don't have any snapshots copy one of the example directory.
```
cp examples/snapshot01.json /tmp/dhub
```
4. Modify the file with environment variables in the file .env You can see one example in examples/env
2023-09-28 14:37:02 +00:00
If you don't have one, please copy the examples/env file and modify the basic vars
2023-09-28 06:18:24 +00:00
```
cp examples/env.example .env
```
2023-09-28 14:37:02 +00:00
You can use these parameters for default as a test, but you need to add values in these three variables:
2023-09-28 06:18:24 +00:00
```
API_DLT
API_DLT_TOKEN
API_RESOLVER
```
2023-09-28 15:57:56 +00:00
You can use that .env as a default for a test deployment, but these variables need to be initialized. These values should come from a deployed [API_DLT connector](https://gitlab.com/dsg-upc/ereuse-dpp) service instance.
2023-09-28 06:18:24 +00:00
5. run the dockers:
```
docker compose up
```
2023-09-28 14:37:02 +00:00
To stop the dockers you can use Ctl+C, and if you run again "compose up" you'll maintain the data and infrastructure.
In the screen you can see all the process of install. If there are any problem you can see this errors in the screen.
If the last line you see one text like this, *exited whit code*:
```
devicehub-teal-devicehub-id-client-1 exited with code 1
```
Then the install went wrong.
2023-09-28 06:18:24 +00:00
2023-09-28 15:57:56 +00:00
If the deployment was end-to-end successful (two running Devicehub instances successfully connected to the DLT backend selected in the .env file), you can see this text in the last lines:
```
devicehub-teal-devicehub-id-client-1 | * Running on http://172.28.0.2:5000/ (Press CTRL+C to quit)
devicehub-teal-devicehub-id-server-1 | * Running on all addresses.
devicehub-teal-devicehub-id-server-1 | WARNING: This is a development server. Do not use it in a production deployment.
devicehub-teal-devicehub-id-server-1 | * Running on http://172.28.0.5:5000/ (Press CTRL+C to quit)
```
2023-09-28 14:37:02 +00:00
6. If you want to down the volumes and remove the data, you can use:
2023-09-28 06:18:24 +00:00
```
docker compose down -v
```
7. If you want to enter a shell inside a new container:
```
docker run -it --entrypoint= ${target_docker_image} bash
```
2023-09-28 14:37:02 +00:00
If you want to enter a shell on an already running container:
2023-09-28 06:18:24 +00:00
```
docker exec -it ${target_docker_image} bash
```
2023-09-28 14:37:02 +00:00
To know the valid value for ${target_docker_image} you can use:
2023-09-28 06:18:24 +00:00
```
docker ps
2023-09-28 06:24:03 +00:00
```
2023-09-28 14:37:02 +00:00
8. These are the details for use in this implementation:
2023-09-28 06:27:05 +00:00
2023-09-28 14:37:02 +00:00
*devicehub with port 5000* is the identity provider of OIDC and have user *user5000@example.com*
2023-09-28 06:27:05 +00:00
2023-09-28 14:37:02 +00:00
*devicehub with port 5001* is the client identity of OIDC and have user *user5001@example.com*
2023-09-28 06:24:03 +00:00
2023-09-28 14:37:02 +00:00
You can change these values in the *.env* file