diff --git a/README.md b/README.md index 6b8e248..a111559 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,4 @@ -# oe-studio - +# oe-studio-service This is oeCloud working module that enables the usage of oe-studio in the application. ### Getting Started @@ -13,8 +12,8 @@ To use this oe-studio feature in project from this module, you should install th ### Testing and Code coverage ```sh -$ git clone https://github.com/EdgeVerve/oe-studio.git -$ cd oe-studio +$ git clone https://github.com/EdgeVerve/oe-studio-service.git +$ cd oe-studio-service $ npm install --no-optional $ npm run grunt-cover ``` @@ -24,18 +23,18 @@ you can find coverage report in coverage folder. ### Installation -To use oe-studio in your application, you should include this module as a dependency to your app package.json as shown below. +To use oe-studio-service in your application, you should include this module as a dependency to your app package.json as shown below. ```javascript -"oe-studio": "git+https://github.com/EdgeVerve/oe-studio.git#2.0.0" +"oe-studio-service": "^2.0.0" ``` You can also install this mixin on command line using npm install. ```sh -$ npm install --no-optional +$ npm install --no-optional ``` @@ -48,14 +47,14 @@ app-list.json ```javascript { - "path": "oe-studio", + "path": "oe-studio-service", "enabled": true } ``` ### Bower dependency -To run the oe-studio you will need oe-studio bower component in your application under the `client/bower_components` path +To run the oe-studio-service you will need oe-studio bower component in your application under the `client/bower_components` path You can install the bower component using the following command. ```sh @@ -91,7 +90,7 @@ Currently supported designer config are as follows : ... ``` -##Modules +## Modules The modules array provided in the `config.json` determines the plugins available to oe-studio. This array should contain objects similar to UIRoutes model data. ``` diff --git a/client/explorer/css/oeCloud.css b/client/explorer/css/oeCloud.css deleted file mode 100644 index 0871733..0000000 --- a/client/explorer/css/oeCloud.css +++ /dev/null @@ -1,29 +0,0 @@ -/** - * - * ©2016-2017 EdgeVerve Systems Limited (a fully owned Infosys subsidiary), - * Bangalore, India. All Rights Reserved. - * - */ - -/* oecloud customizations */ - -body #header { - background-color: #1724BA !important; -} - -body #header form#api_selector .input a#explore { - background-color: white !important; - color: #1724BA !important; -} - -body #header form#api_selector .input a#explore:hover { - background-color: white !important; - cursor: pointer; -} -body #header form#api_selector .input a#explore:active { - background-color: #eeeeee !important; -} - -body #header #logo{ - background-size: 36px !important; -} \ No newline at end of file diff --git a/client/explorer/favicon.ico b/client/explorer/favicon.ico deleted file mode 100644 index fb5e39b..0000000 Binary files a/client/explorer/favicon.ico and /dev/null differ diff --git a/client/explorer/images/logo_small.png b/client/explorer/images/logo_small.png deleted file mode 100644 index e423b69..0000000 Binary files a/client/explorer/images/logo_small.png and /dev/null differ diff --git a/client/explorer/index.html b/client/explorer/index.html deleted file mode 100644 index 4c8d601..0000000 --- a/client/explorer/index.html +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - - oeCloud.io API Explorer - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - diff --git a/client/favicon.ico b/client/favicon.ico deleted file mode 100644 index fb5e39b..0000000 Binary files a/client/favicon.ico and /dev/null differ diff --git a/client/index.html b/client/index.html deleted file mode 100644 index 156a065..0000000 --- a/client/index.html +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - oeCloud.io - - - - - - - - -

oeCloud.io

-

You may want to install bower components for polymer UI

- - - -
- - - - - diff --git a/package.json b/package.json index 1b968e5..1d33bab 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "oe-studio-service", - "version": "2.0.0", + "version": "2.1.0", "description": "oe-cloud module for enabling and supporting oe-studio", "engines": { "node": ">=6" @@ -15,7 +15,7 @@ }, "dependencies": { "async": "2.6.1", - "lodash": "4.17.11" + "lodash": "4.17.14" }, "devDependencies": { "babel-eslint": "7.2.3", @@ -24,7 +24,7 @@ "chai-things": "0.2.0", "chalk": "1.1.1", "eslint": "4.10.0", - "grunt": "1.0.3", + "grunt": "1.0.4", "grunt-contrib-clean": "2.0.0", "grunt-contrib-copy": "1.0.0", "grunt-mkdir": "1.0.0", @@ -34,11 +34,11 @@ "mocha": "5.2.0", "superagent-defaults": "0.1.14", "supertest": "3.4.2", - "oe-metadata-ui": "2.0.0", - "oe-cloud": "2.0.0", + "oe-metadata-ui": "^2.0.0", + "oe-cloud": "^2.0.0", "loopback-connector-mongodb": "3.9.2", - "oe-connector-oracle": "2.0.0", - "oe-connector-postgresql": "2.0.0" + "oe-connector-oracle": "^2.0.0", + "oe-connector-postgresql": "^2.0.0" }, "repository": { "type": "git", diff --git a/test/component-config.json b/test/component-config.json index f36959a..2c63c08 100644 --- a/test/component-config.json +++ b/test/component-config.json @@ -1,5 +1,2 @@ { - "loopback-component-explorer": { - "mountPath": "/explorer" - } }