Skip to content
This repository was archived by the owner on Jul 16, 2024. It is now read-only.

Commit 5bd8491

Browse files
committed
Fixed a bug and updated documentation for new product name.
1 parent 095d4ef commit 5bd8491

File tree

5 files changed

+1190
-908
lines changed

5 files changed

+1190
-908
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# About gatsby-source-oce
22

3-
A Gatsby source plugin for importing data from an [Oracle Content and Experience](https://docs.oracle.com/en/cloud/paas/content-cloud/headless-cms.html) (OCE) service into a [Gatsby](https://www.gatsbyjs.com) application.
3+
A Gatsby source plugin for importing data from an [Oracle Content Management](https://docs.oracle.com/en/cloud/paas/content-cloud/headless-cms.html) service into a [Gatsby](https://www.gatsbyjs.com) application.
44

55
## Installation
66

@@ -12,7 +12,7 @@ npm install @oracle/gatsby-source-oce
1212

1313
## Documentation
1414

15-
The OCE Gatsby plugin doesn't have any user-accessible APIs exposed. When configured properly, it will be invoked at either build or develop time by Gatsby and will download your assets and convert them into nodes that you can query with GraphQL. Two types of nodes are created:
15+
This Gatsby plugin doesn't have any user-accessible APIs exposed. When configured properly, it will be invoked at either build or develop time by Gatsby and will download your assets and convert them into nodes that you can query with GraphQL. Two types of nodes are created:
1616

1717
- `OceAsset` nodes. These contain the JSON data for both digital assets and content items.
1818
- `File` nodes. All digital assets have a metadata section that includes URLs that can be used to access the associated binary data (the original file and any applicable renditions). Gatsby downloads these binaries and stores them as file nodes.
@@ -45,13 +45,13 @@ module.exports = {
4545
### Configuration Options
4646

4747
**`contentServer`** (required)
48-
This should be set to the base url for your Oracle Content service. The URL uses the pattern `https://<service-name>-<account-name>.cec.ocp.oraclecloud.com` and can be given to you by your OCE service administrator.
48+
This should be set to the base url for your Oracle Content Management service. The URL uses the pattern `https://<service-name>-<account-name>.cec.ocp.oraclecloud.com` and can be given to you by your Content service administrator.
4949

5050
**`channelToken`** (required)
5151
This should be set to the publishing channel holding your site's content.
5252

5353
**`proxyUrl`** [optional] *Defaults to empty which uses a direct connection*
54-
This can be used if there is a network proxy between the machine building your Gatsby project and the OCE server. If a proxy is not being used then omit this field or set it to '' (empty string).
54+
This can be used if there is a network proxy between the machine building your Gatsby project and the Content server. If a proxy is not being used then omit this field or set it to '' (empty string).
5555

5656
**`limit`** [optional] *Defaults to 100*
5757
This can be used to limit how many assets will be queried from the channel at one time.

0 commit comments

Comments
 (0)