Loopback rest service

Created rest service , which will be used to interact with backend API's

Issue-ID: CCSDK-1097
Change-Id: Ie91b1b60e2237c1ec80e490877dc6292c3106835
Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
diff --git a/cds-ui/server/src/datasources/rest.config.json b/cds-ui/server/src/datasources/rest.config.json
new file mode 100644
index 0000000..86f33fb
--- /dev/null
+++ b/cds-ui/server/src/datasources/rest.config.json
@@ -0,0 +1,39 @@
+{
+   "name": "restConfig",
+   "connector": "rest",
+   "options": {
+      "headers": {
+          "accept": "application/json",
+          "content-type": "application/json"
+      }
+   },
+   "operations": [
+       {
+      "template": {
+         "method": "GET",
+         "url": ""
+      },
+      "functions": {
+         "getEnricheddata": [""]
+      }
+   },
+   {
+      "template": {
+         "method": "POST",
+         "url": ""
+      },
+      "functions": {
+         "saveBlueprint": [""]
+      }
+   },
+   {
+      "template": {
+         "method": "POST",
+         "url": ""
+      },
+      "functions": {
+         "test": [""]
+      }
+   }
+]
+}
\ No newline at end of file