From 25bef6ee737652ff62789f4af9db2373f93afb00 Mon Sep 17 00:00:00 2001 From: Romain Forlot Date: Mon, 23 Oct 2017 23:06:50 +0200 Subject: Update app-template & use new JSON schema for conf Change-Id: I6e920ee08ea38f53f5dcc58d58f89cf1ace22f42 Signed-off-by: Romain Forlot --- conf.d/project/etc/init-daemon.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) (limited to 'conf.d/project/etc/init-daemon.json') diff --git a/conf.d/project/etc/init-daemon.json b/conf.d/project/etc/init-daemon.json index 045f3fe..8804b1d 100644 --- a/conf.d/project/etc/init-daemon.json +++ b/conf.d/project/etc/init-daemon.json @@ -1,25 +1,30 @@ { - "$schema": "ToBeDone", + "$schema": "http://iot.bzh/download/public/schema/json/signal-composer-schema.json", "metadata": { - "label": "Signal Composer", + "uid": "Signal Composer", "version": "1.0", "api": "test", "info": "Signal composer Configuration", - "require": ["low-can"], - "files": ["sources", "sig-doors", "sig-demoboard"] + "require": ["low-can"] }, "plugins": [ { - "label": "low-can-callbacks", + "uid": "low-can-callbacks", "version": "1.0", "info": "Manage interaction with low-can service", "basename": "low-can" }, { - "label": "gps-callbacks", + "uid": "gps-callbacks", "version": "1.0", "info": "Manage interaction with gps service", "basename": "gps" } - ] + ], + "signals": { + "files": ["sig-doors", "sig-demoboard" ] + }, + "sources": { + "files": "sources" + } } -- cgit 1.2.3-korg