Skip to content

Commit

Permalink
Fixed merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
vamsee committed Nov 14, 2019
2 parents 8b412f6 + 113bd10 commit 37df93f
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 238 deletions.
19 changes: 9 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
```
Expand All @@ -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 <git path oe-studio> --no-optional
$ npm install <git path oe-studio-service> --no-optional
```


Expand All @@ -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
Expand Down Expand Up @@ -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.
```
Expand Down
29 changes: 0 additions & 29 deletions client/explorer/css/oeCloud.css

This file was deleted.

Binary file removed client/explorer/favicon.ico
Binary file not shown.
Binary file removed client/explorer/images/logo_small.png
Binary file not shown.
112 changes: 0 additions & 112 deletions client/explorer/index.html

This file was deleted.

Binary file removed client/favicon.ico
Binary file not shown.
77 changes: 0 additions & 77 deletions client/index.html

This file was deleted.

14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -15,7 +15,7 @@
},
"dependencies": {
"async": "2.6.1",
"lodash": "4.17.11"
"lodash": "4.17.14"
},
"devDependencies": {
"babel-eslint": "7.2.3",
Expand All @@ -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",
Expand All @@ -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",
Expand Down
3 changes: 0 additions & 3 deletions test/component-config.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
{
"loopback-component-explorer": {
"mountPath": "/explorer"
}
}

0 comments on commit 37df93f

Please sign in to comment.