Skip to content
This repository has been archived by the owner on Mar 31, 2022. It is now read-only.

Commit

Permalink
updated markdown files
Browse files Browse the repository at this point in the history
  • Loading branch information
shethdhvani committed Nov 13, 2019
1 parent be5817a commit ff9e2ab
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 3 deletions.
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ The Oracle OCI connector allows you to access the Oracle OCI REST APIs through b
- Create an [Oracle Cloud account](https://myservices.us.oraclecloud.com/mycloud/signup?sourceType=_ref_coc-asset-opcSignIn&language=en)


### Install from Source
### Option 1: Install from Source

**Building the source**
1. Clone this repository using the following command:
Expand All @@ -65,6 +65,19 @@ The Oracle OCI connector allows you to access the Oracle OCI REST APIs through b
```
### Option 2: Specify the path for cloned or downloaded .balo files
Clone or download this github repository - [ballerina-oci](https://github.com/oracle/ballerina-oci.git).
Specify the path of the ".balo" files (found in the target folder) in the Ballerina.toml as below:
```
[dependencies]
"oracle/core" = { path = "path-to-core.balo", version = "0.1.0"}
"oracle/iam" = { path = "path-to-iam.balo", version = "0.1.0"}
"oracle/objectstorage" = { path = "path-to-objectstorage.balo", version = "0.1.0"}
```
## Running Tests
If you want to run the tests from the ballerina-oci modules, follow the below steps.
Expand Down
2 changes: 1 addition & 1 deletion src/iam/Module.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Add the below dependency in your Ballerina.toml file.

```
[dependencies]
"oracle/iam" = { path = "https://github.com/oracle/ballerina-oci/blob/master/target/balo/iam-2019r3-any-0.1.0.balo", version = "0.1.0"}
"oracle/iam" = { path = "path-to-iam.balo", version = "0.1.0"}
```

You can use the `oracle/iam` module to integrate with Oracle IAM Services. Import the `oracle/iam` module into the Ballerina project.
Expand Down
2 changes: 1 addition & 1 deletion src/objectstorage/Module.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Add the below dependency in your Ballerina.toml file.

```
[dependencies]
"oracle/objectstorage" = { path = "https://github.com/oracle/ballerina-oci/blob/master/target/balo/objectstorage-2019r3-any-0.1.0.balo", version = "0.1.0"}
"oracle/objectstorage" = { path = "path-to-objectstorage.balo", version = "0.1.0"}
```

You can use the `oracle/objectstorage` module to integrate with Oracle Object Storage Services. Import the `oracle/objectstorage` module into the Ballerina project.
Expand Down
Binary file modified target/balo/core-2019r3-any-0.1.0.balo
Binary file not shown.
Binary file modified target/balo/iam-2019r3-any-0.1.0.balo
Binary file not shown.
Binary file modified target/balo/objectstorage-2019r3-any-0.1.0.balo
Binary file not shown.

0 comments on commit ff9e2ab

Please sign in to comment.