Skip to content

Commit 6beb2bf

Browse files
committed
Change all references to TerminusX to TerminusCMS
1 parent fb0ee2d commit 6beb2bf

File tree

20 files changed

+61
-61
lines changed

20 files changed

+61
-61
lines changed

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Install using pip:
2121

2222
`$ python3 -m pip install terminusdb-client`
2323

24-
If you are new to TerminusDB/ TerminusX and will use Python client, you are recommended to check out the [Getting Started tutorial series](./getting_started/python-client).
24+
If you are new to TerminusDB/ TerminusCMS and will use Python client, you are recommended to check out the [Getting Started tutorial series](./getting_started/python-client).
2525

2626

2727
#### JavaScript Client
@@ -47,15 +47,15 @@ Taking you through the process of loading RDF into TerminusDB and then using Gra
4747

4848
Details: [README](./star-wars)
4949

50-
## Getting Started using TerminusDB/ TerminusX with the Python client
50+
## Getting Started using TerminusDB/ TerminusCMS with the Python client
5151

52-
A tutorial series to help anyone who's new to TerminusDB/ TerminusX to start working using the Python client.
52+
A tutorial series to help anyone who's new to TerminusDB/ TerminusCMS to start working using the Python client.
5353

5454
Details: [README](./getting_started/python-client/README.md)
5555

56-
## Getting Started using TerminusDB/ TerminusX with the JavaScript client
56+
## Getting Started using TerminusDB/ TerminusCMS with the JavaScript client
5757

58-
A tutorial series to help anyone who's new to TerminusDB/ TerminusX to start working using the JavaScript client.
58+
A tutorial series to help anyone who's new to TerminusDB/ TerminusCMS to start working using the JavaScript client.
5959

6060
Details: [README](./getting_started/javascript-client)
6161

@@ -71,8 +71,8 @@ An example data product which holds information about all operating nuclear powe
7171

7272
Details: [index](./nuclear)
7373

74-
## Using TerminusX in React App
74+
## Using TerminusCMS in React App
7575

76-
Use TerminusX to build a React app that serves as a simple content management app.
76+
Use TerminusCMS to build a React app that serves as a simple content management app.
7777

7878
Details: [README](./react-example/README.md)

diff_patch/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Diff and Patch with TerminusDB/ TerminusX Demo
1+
# Diff and Patch with TerminusDB/ TerminusCMS Demo
22

33
In this demo tutorial, we will show how the diff and patch operation can be applied to monitor changes in TerminusDB schema, TerminusDB documents, JSON schema and with other document database like MongoDB.
44

getting_started/javascript-client/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Getting started using TerminusDB Javascript Client
22

3-
This is a step by step tutorial to get you started using TerminusDB/ TerminusX for the first time. This will cover all the basics that you can work with TerminusDB/ TerminusX using the Javascript client.
3+
This is a step by step tutorial to get you started using TerminusDB/ TerminusCMS for the first time. This will cover all the basics that you can work with TerminusDB/ TerminusCMS using the Javascript client.
44

55
- [Lesson 1 - Installing, start project and create an empty database with schema](lesson_1.md)
66
- [Lesson 2 - Importing data form CSV using Javascript script](lesson_2.md)

getting_started/javascript-client/lesson_1.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Installing
44

5-
You can download the TerminusDB docker image to work locally (recommended to use [Bootstrap here](https://github.com/terminusdb/terminusdb-bootstrap)) or you can connect to TerminusX. If you are using docker image, make sure that your TerminusDB container is running at localhost (https://127.0.0.1). If you are using TerminusX, get the information of the endpoint, team, and API token ready (it should be accessible in the [TerminusX dashboard](https://dashboard.terminusdb.com/) under profile.)
5+
You can download the TerminusDB docker image to work locally (recommended to use [Bootstrap here](https://github.com/terminusdb/terminusdb-bootstrap)) or you can connect to TerminusCMS. If you are using docker image, make sure that your TerminusDB container is running at localhost (https://127.0.0.1). If you are using TerminusCMS, get the information of the endpoint, team, and API token ready (it should be accessible in the [TerminusCMS dashboard](https://dashboard.terminusdb.com/) under profile.)
66

77
It is recommended to install the TerminusDB Javascript client (works with [Nodejs >= 10](https://nodejs.org/en/download/)) in a separate new nodejs project.
88

@@ -122,7 +122,7 @@ const createDatabaseAndSchema = async () => {
122122
createDatabaseAndSchema();
123123
```
124124

125-
To verify the schema is committed, if you are using TerminusX, you can see changes in the dashboard. Since we are using TerminusDB locally (it works with TerminusX as well), we can look at the commit history by:
125+
To verify the schema is committed, if you are using TerminusCMS, you can see changes in the dashboard. Since we are using TerminusDB locally (it works with TerminusCMS as well), we can look at the commit history by:
126126

127127
```javascript
128128
// Get commit history
@@ -154,7 +154,7 @@ const client = new TerminusClient.WOQLClient(
154154
{ user: username, organization: teamName }
155155
);
156156

157-
// If you are using TerminusX you need to generate you api key
157+
// If you are using TerminusCMS you need to generate you api key
158158
// https://terminusdb.com/docs/terminusx/get-api-key here the documentation
159159
client.setApiKey(process.env.TERMINUSDB_ACCESS_TOKEN);
160160

getting_started/javascript-client/lesson_2.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const path = require("path");
2020
const csv = require("fast-csv");
2121
```
2222

23-
Also we need to import `WOQLClient` which is the client that communitcate with the TerminusDB/ TerminusX:
23+
Also we need to import `WOQLClient` which is the client that communitcate with the TerminusDB/ TerminusCMS:
2424

2525
```javascript
2626
const TerminusClient = require("@terminusdb/terminusdb-client");
@@ -119,11 +119,11 @@ const client = new TerminusClient.WOQLClient(
119119
{ user: username, organization: teamName , db:"GettingStartedDB" }
120120
);
121121

122-
// If you are using TerminusX
122+
// If you are using TerminusCMS
123123
client.setApiKey(process.env.TERMINUSDB_ACCESS_TOKEN);
124124
```
125125

126-
If you are using TerminusX, you can find the information of your endpoint, team, and API token from the [TerminusX dashboard](https://dashboard.terminusdb.com/) under profile.
126+
If you are using TerminusCMS, you can find the information of your endpoint, team, and API token from the [TerminusCMS dashboard](https://dashboard.terminusdb.com/) under profile.
127127

128128
Now we are all ready, the last thing to do is to insert the documents:
129129

@@ -152,7 +152,7 @@ const result = await client.getDocument({"as_list":true});
152152
console.log(result);
153153
```
154154

155-
Or if the data is on TerminusX, you can check it in the [TerminusX dashboard](https://dashboard.terminusdb.com/)
155+
Or if the data is on TerminusCMS, you can check it in the [TerminusCMS dashboard](https://dashboard.terminusdb.com/)
156156

157157
---
158158

getting_started/javascript-client/lesson_3.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Also, our Marketing Manager Destiny has moved to a new address:
1818

1919
How are we going to update the records?
2020

21-
## Getting data objects back from TerminusDB/ TerminusX
21+
## Getting data objects back from TerminusDB/ TerminusCMS
2222

2323
Let's look at how to update Destiny's Address. We did it with the [update_data.js](update_data.js).
2424

@@ -89,7 +89,7 @@ const result = await client.getDocument({"as_list":true});
8989
console.log(result);
9090
```
9191

92-
Or if you are using TerminusX, you can also check it in the dashboard.
92+
Or if you are using TerminusCMS, you can also check it in the dashboard.
9393

9494
---
9595

getting_started/python-client/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
> **_NOTE:_** from version 10.1.0 the cli command is `tdbpy` instead of `terminusdb`
44
5-
This is a step by step tutorial to get you started using TerminusDB/ TerminusX for the first time. This will cover all the basics that you can work with TerminusDB/ TerminusX using the Python client.
5+
This is a step by step tutorial to get you started using TerminusDB/ TerminusCMS for the first time. This will cover all the basics that you can work with TerminusDB/ TerminusCMS using the Python client.
66

77
- [Lesson 1 - Installing, start project and create an empty database with schema](lesson_1.md)
88
- [Lesson 2 - Importing a CSV into the database](lesson_2.md)

getting_started/python-client/lesson_1.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Installing
44

5-
You can download the TerminusDB docker image to work locally (recommended to use [Bootstrap here](https://github.com/terminusdb/terminusdb-bootstrap)) or you can connect to TerminusX. If you are using docker image, make sure that your TerminusDB container is running at localhost (https://127.0.0.1). If you are using TerminusX, get the information of the endpoint, team, and API token ready (it should be accessible in the [TerminusX dashboard](https://dashboard.terminusdb.com/) under profile.)
5+
You can download the TerminusDB docker image to work locally (recommended to use [Bootstrap here](https://github.com/terminusdb/terminusdb-bootstrap)) or you can connect to TerminusCMS. If you are using docker image, make sure that your TerminusDB container is running at localhost (https://127.0.0.1). If you are using TerminusCMS, get the information of the endpoint, team, and API token ready (it should be accessible in the [TerminusCMS dashboard](https://dashboard.terminusdb.com/) under profile.)
66

77
It is recommended to install the TerminusDB Python client (works with [Python >= 3.7](https://www.python.org/downloads)) in a [separate Python environment](https://docs.python.org/3/tutorial/venv.html). For example, if we use `venv` which comes with standard installation of Python 3. First we create new environment:
88

@@ -27,7 +27,7 @@ In the project directory start a TerminusDB project:
2727

2828
`$ tdbpy startproject`
2929

30-
You will be prompt with a few questions. Pick a project name (or the database name if you already have a working database) and if you are running the localhost server with default port you can just press Enter. You have to provide the endpoint and other login information if you are using TerminusX or otherwise.
30+
You will be prompt with a few questions. Pick a project name (or the database name if you already have a working database) and if you are running the localhost server with default port you can just press Enter. You have to provide the endpoint and other login information if you are using TerminusCMS or otherwise.
3131

3232
This is what I did:
3333

@@ -118,7 +118,7 @@ getting_started created.
118118
getting_started schema updated.
119119
```
120120

121-
To verify the schema is commit, if you are using TerminusX, you can see changes in the dashboard. Since we are using TerminusDB locally (it works with TerminusX as well), we can look at the logs by:
121+
To verify the schema is commit, if you are using TerminusCMS, you can see changes in the dashboard. Since we are using TerminusDB locally (it works with TerminusCMS as well), we can look at the logs by:
122122

123123
```
124124
$ tdbpy log

getting_started/python-client/lesson_3.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ In the first half of the script, we have to manage and import the data form CSV.
3939
import csv
4040
```
4141

42-
Also we need to import `WOQLClient` which is the client that communitcate with the TerminusDB/ TerminusX and `schema.py`:
42+
Also we need to import `WOQLClient` which is the client that communitcate with the TerminusDB/ TerminusCMS and `schema.py`:
4343

4444
```python
4545
from terminusdb_client import WOQLClient
@@ -113,7 +113,7 @@ Then we will connect the client to our database. If you are connecting locally a
113113
client.connect(db="getting_started")
114114
```
115115

116-
If you are using TerminusX, you can find the information of your endpoint, team, and API token from the [TerminusX dashboard](https://dashboard.terminusdb.com/) under profile.
116+
If you are using TerminusCMS, you can find the information of your endpoint, team, and API token from the [TerminusCMS dashboard](https://dashboard.terminusdb.com/) under profile.
117117

118118
Now we are all ready, the last thing to do is to insert the documents:
119119

@@ -135,7 +135,7 @@ To check if the data is insert correctly, we can use the `tdbpy alldocs` command
135135
$ tdbpy alldocs --type Employee
136136
```
137137

138-
Or if the data is on TerminusX, you can check it in the [TerminusX dashboard](https://dashboard.terminusdb.com/)
138+
Or if the data is on TerminusCMS, you can check it in the [TerminusCMS dashboard](https://dashboard.terminusdb.com/)
139139

140140
---
141141

getting_started/python-client/lesson_4.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Also, our Marketing Manager Destiny has moved to a new address:
2020

2121
How are we going to update the records?
2222

23-
## Getting data objects back from TerminusDB/ TerminusX
23+
## Getting data objects back from TerminusDB/ TerminusCMS
2424

2525
Let's look at how to update Destiny's Address. We did it with the [update_data.py](update_data.py). The first step after connecting with the client is to get back the schema of the database. In the terminal we can use:
2626

@@ -123,7 +123,7 @@ To check if the database is up-to-date, you can do in the terminal like we did b
123123

124124
`$ tdbpy alldocs`
125125

126-
Or if you are using TerminusX, you can also check it in the dashboard.
126+
Or if you are using TerminusCMS, you can also check it in the dashboard.
127127

128128
---
129129

nobel_prize/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Nobel Prize Winners (1900 - 2020)
22

3-
In this tutorial, we will pull the Nobel Prize winners data from a [CSV file](https://www.kaggle.com/rishidamarla/nobel-prize-winners-19002020) and put it in TerminusDB/TerminusX.
3+
In this tutorial, we will pull the Nobel Prize winners data from a [CSV file](https://www.kaggle.com/rishidamarla/nobel-prize-winners-19002020) and put it in TerminusDB/TerminusCMS.
44

55
## Check your endpoint is running
66

7-
You can download the TerminusDB docker image to work locally (recommended to use [Bootstrap here](https://github.com/terminusdb/terminusdb-bootstrap)) or you can connect to TerminusX. If you are using docker image, make sure that your TerminusDB container is running at localhost (https://127.0.0.1). If you are using TerminusX, get the information of the endpoint, team, and API token ready (it should be accessible in the [TerminusX dashboard](https://dashboard.terminusdb.com/) under profile.
7+
You can download the TerminusDB docker image to work locally (recommended to use [Bootstrap here](https://github.com/terminusdb/terminusdb-bootstrap)) or you can connect to TerminusCMS. If you are using docker image, make sure that your TerminusDB container is running at localhost (https://127.0.0.1). If you are using TerminusCMS, get the information of the endpoint, team, and API token ready (it should be accessible in the [TerminusCMS dashboard](https://dashboard.terminusdb.com/) under profile.
88

99
## Clone this repository
1010

@@ -40,7 +40,7 @@ In the project directory start a TerminusDB project:
4040
$ tdbpy startproject
4141
```
4242

43-
You will be prompt with a few questions. Pick a project name and if you are running the localhost server with default port you can just press Enter. You have to provide the endpoint and other login information if you are using TerminusX or otherwise.
43+
You will be prompt with a few questions. Pick a project name and if you are running the localhost server with default port you can just press Enter. You have to provide the endpoint and other login information if you are using TerminusCMS or otherwise.
4444

4545
This is what I did:
4646

@@ -106,13 +106,13 @@ We create the schema of the data we'll be writing to the stream formatted as a J
106106

107107
Records in the dataset are read by calling `read_data` function and written to the stream by calling `write_data`.
108108

109-
## Import the Nobel Prize winners data into TerminusDB/ TerminusX
109+
## Import the Nobel Prize winners data into TerminusDB/ TerminusCMS
110110

111111
```
112112
$ python nobel_prize.py | target-terminusdb -c config.json
113113
```
114114

115-
## Verify the data is in TerminusDB/TerminusX
115+
## Verify the data is in TerminusDB/TerminusCMS
116116

117117
Check if the documents are looking good by using the following command to get 10 documents to inspect:
118118

nuclear/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ them yourself or you can clone the repository and run the files
1717
directly using our short script in our `make`-file.
1818

1919
To clone the repository and run it, however, first you'll need a [key from
20-
TerminusX](https://docs.terminusdb.com/v10.0/#/terminusx/get-your-api-key).
20+
TerminusCMS](https://docs.terminusdb.com/v10.0/#/terminusx/get-your-api-key).
2121

2222
You will also need to copy your *team name* into the environment variable
2323

nuclear/nuclear.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import urllib.parse
2424

2525

2626

27-
We also need to connect to TerminusX, where we are going to store our
27+
We also need to connect to TerminusCMS, where we are going to store our
2828
data. Once we have a client, we run connect which will throw an error
2929
if there is a problem getting into our account.
3030

@@ -288,7 +288,7 @@ def load_elements(client):
288288
Our preliminary nuclear reactor schema is not very elaborate. We
289289
basically just create a few classes and a small hierarchy which we can
290290
fill from the CSV below, but which can also be filled out later by
291-
hand in the TerminusX document editor, or by enriching the data
291+
hand in the TerminusCMS document editor, or by enriching the data
292292
programmatically.
293293

294294
```python
@@ -419,7 +419,7 @@ Since we might want to play with this script and run it a few types,
419419
it's handy to delete the database if it already exists.
420420

421421
Now we go ahead and create the database, and presto, you should be
422-
good to go. You can now try logging in to TerminusX and looking at the
422+
good to go. You can now try logging in to TerminusCMS and looking at the
423423
data product.
424424

425425
Alternatively you can try getting one of the documents out and having

0 commit comments

Comments
 (0)