All Projects → eclipse → Ditto

eclipse / Ditto

Licence: epl-2.0
Eclipse Ditto Project

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Ditto

Vorto
Vorto Project
Stars: ✭ 179 (-26.94%)
Mutual labels:  eclipseiot, iot, internet-of-things
Paho.mqtt.android
MQTT Android
Stars: ✭ 2,334 (+852.65%)
Mutual labels:  eclipseiot, iot, internet-of-things
Hawkbit
Eclipse hawkBit™
Stars: ✭ 283 (+15.51%)
Mutual labels:  eclipseiot, iot, internet-of-things
Kura
Eclipse Kura™ project - http://eclipse.org/kura
Stars: ✭ 369 (+50.61%)
Mutual labels:  eclipseiot, iot, internet-of-things
Paho.mqtt.embedded C
Paho MQTT C client library for embedded systems. Paho is an Eclipse IoT project (https://iot.eclipse.org/)
Stars: ✭ 887 (+262.04%)
Mutual labels:  eclipseiot, iot, internet-of-things
Paho.mqtt.c
An Eclipse Paho C client library for MQTT for Windows, Linux and MacOS. API documentation: https://eclipse.github.io/paho.mqtt.c/
Stars: ✭ 1,056 (+331.02%)
Mutual labels:  eclipseiot, iot, internet-of-things
Wakaama
Eclipse Wakaama is a C implementation of the Open Mobile Alliance's LightWeight M2M protocol (LWM2M).
Stars: ✭ 358 (+46.12%)
Mutual labels:  eclipseiot, iot, internet-of-things
Leshan
Eclipse Leshan is an OMA Lightweight M2M (LWM2M) implementation in Java.
Stars: ✭ 483 (+97.14%)
Mutual labels:  eclipseiot, iot, internet-of-things
Californium
CoAP/DTLS Java Implementation
Stars: ✭ 521 (+112.65%)
Mutual labels:  eclipseiot, iot, internet-of-things
Smarthome
Eclipse SmartHome™ project
Stars: ✭ 867 (+253.88%)
Mutual labels:  eclipseiot, iot, internet-of-things
Paho.mqtt.java
Eclipse Paho Java MQTT client library. Paho is an Eclipse IoT project.
Stars: ✭ 1,620 (+561.22%)
Mutual labels:  eclipseiot, iot, internet-of-things
Kapua
Stars: ✭ 169 (-31.02%)
Mutual labels:  eclipseiot, internet-of-things
Make
📖📖📖📖📖 写给软件工程师看的硬件编程指南
Stars: ✭ 170 (-30.61%)
Mutual labels:  iot, internet-of-things
Broadlink Mqtt
MQTT client to control BroadLink devices
Stars: ✭ 169 (-31.02%)
Mutual labels:  iot, internet-of-things
Homeassistant
Example Home Assistant Configs
Stars: ✭ 168 (-31.43%)
Mutual labels:  iot, internet-of-things
Blynk Library Python
Blynk library for Python. Works with Python 2, Python 3, MicroPython.
Stars: ✭ 170 (-30.61%)
Mutual labels:  iot, internet-of-things
Lisa
Sandbox for automated Linux malware analysis.
Stars: ✭ 177 (-27.76%)
Mutual labels:  iot, internet-of-things
Designiot
教你设计物联网系统。构建自己的Internet of Things 。
Stars: ✭ 1,983 (+709.39%)
Mutual labels:  iot, internet-of-things
Siricontrol System
Control anything with Siri voice commands.
Stars: ✭ 180 (-26.53%)
Mutual labels:  iot, internet-of-things
Home Assistant
Home-Assistant-Config
Stars: ✭ 182 (-25.71%)
Mutual labels:  iot, internet-of-things
Ditto Logo

Eclipse Ditto

Join the chat at https://gitter.im/eclipse/ditto Build Status Maven Central License Lines of code

Eclipse Ditto is an open-source project in scope of Eclipse IoT that provides a ready-to-use functionality to manage the state of Digital Twins. It provides access to them and mediates between the physical world and this digital representation.
An ever growing list of adopters makes use of Ditto as part of their IoT platforms - if you're as well using it, it would be super nice to show your adoption here.

Documentation

Find the documentation on the project site: https://eclipse.org/ditto/

Getting started

In order to start up Ditto via Docker Compose, you'll need:

  • a running Docker daemon
  • Docker Compose installed

You also have other possibilities to run Ditto, please have a look here to explore them.

Start Ditto

In order to start the latest built Docker images from Docker Hub, simply execute:

cd deployment/docker/
docker-compose up -d

Check the logs after starting up:

docker-compose logs -f

Open following URL to get started: http://localhost:8080
Or have a look at the "Hello World"

Build and start Ditto locally

In order to build Ditto, you'll need

  • JDK 11 >= 11.0.5 and
  • Apache Maven 3.x installed.

In order to first build Ditto and then start the built Docker images.

1. Build Ditto with Maven

mvn clean install

2. Build local Ditto Docker snapshot images

cd services/
./build-images.sh

If your infrastructure requires a proxy, its host and port can be set using the -p option like for example:

./build-images.sh -p 172.17.0.1:3128

Please note that the given host and port automatically applies for HTTP and HTTPS.

3. Start Ditto with local snapshot images

cd ../deployment/docker/
# the "dev.env" file contains the SNAPSHOT number of Ditto, copy it to ".env" so that docker compose uses it:
cp dev.env .env
docker-compose up -d

Check the logs after starting up:

docker-compose logs -f

You have now running:

  • a MongoDB as backing datastore of Ditto (not part of Ditto but started via Docker)
  • Ditto microservices:
    • Policies
    • Things
    • Things-Search
    • Gateway
    • Connectivity
    • Concierge
  • an nginx acting as a reverse proxy performing a simple "basic authentication" listening on port 8080
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].