User interface for the Dataspace Connector.
The following illustration visualizes the interaction of the Dataspace Connector, the IDS Messaging Services, the Configuration Manager, and it’s GUI. All components have a defined API that allows individual components to be removed or replaced. The Dataspace Connector can be deployed standalone and can be connected to existing backend systems. Configuration Manager and GUI facilitate the operation and configuration of the connector. If desired, the Dataspace Connector may be replaced by another connector implementation, either integrating the IDS Messaging Services or not.
- Install and start Dataspace Connector
- Install Node.js v.14
Use the package manager npm in root directory to install DataspaceConnector UI:
npm install --no-audit
Use the package manager npm in root directory to start Dataspace Connector UI:
npm start
Access: localhost:8082
Change package.json
in root directory:
"serve": "vue-cli-service serve --open --port [PORT]"
Change in src/backend/index.js
:
let connectorUrl = "https://localhost:8080"
You can change the main colors of the user interface in src/theme/default.js
Build docker image:
./buildDockerImage.sh
Run docker image:
sudo docker-compose up
Access: localhost:8083
Change in docker-compose.yml
:
environment:
- CONNECTOR_URL=https://localhost:8080
- CONNECTOR_USER=testuser
- CONNECTOR_PASSWORD=testpw
Please read the development guide.
Please read through our contributing guidelines.