Skip to content

Commit 4eea07e

Browse files
author
Jamie Gillenwater
authored
Update with edits similar to python netflix edits
1 parent 03c8a60 commit 4eea07e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,21 +16,21 @@ Contributors:
1616
## Project Layout
1717

1818
* [app.js](app.js) - main application file
19-
* [netflix-shows](netflix-shows.cql) - foundation CQL for reference or use
19+
* [netflix-shows.cql](netflix-shows.cql) - file to create the schema
2020

2121
## How this works
22-
To get started, read through the comments in the `app.js` to familiarize yourself with the steps for interacting with your own Cassandra database. The functions invoked by the `app.js` are created to provide more flexibility for modifications as you learn.
22+
To get started, read the `app.js` comments to learn the steps for interacting with your own Cassandra database. The functions invoked by the `app.js` are created to provide more flexibility for modifications as you learn.
2323

2424
## Setup and running
2525

2626
### Prerequisites
27-
If using [DataStax Desktop](https://www.datastax.com/blog/2020/05/learn-cassandra-datastax-desktop), no prerequisites will be required. The Cassandra instance is provided with the DataStax Desktop stack as part of container provisioning.
27+
If using [DataStax Desktop](https://www.datastax.com/blog/2020/05/learn-cassandra-datastax-desktop), no prerequisites are required. The Cassandra instance is provided with the DataStax Desktop stack as part of container provisioning.
2828

29-
If NOT using DataStax Desktop, spin up your own local instance of Cassandra exposing its address and port to align with the settings in the **app.js** file. You will need to install and perform the following steps:
29+
If NOT using DataStax Desktop, spin up your own local instance of Cassandra exposing its address and port to align with the settings in the `app.js` file. You will need to install and perform the following steps:
3030

3131
* Install [Apache Cassandra®](http://cassandra.apache.org/download/) 3.x
3232
* [Node.js](https://nodejs.org/en/download/) server environment
33-
* Use npm to install the driver: `npm install cassandra-driver`
33+
* Installed Cassandra driver: `npm install cassandra-driver`
3434
* Create the keyspace and table. The `netflix-shows.cql` file provides the schema used for this project.
3535

3636

@@ -46,7 +46,7 @@ const client = new cassandra.Client({
4646

4747
## Running
4848

49-
Simply kickoff the app from the command line.
49+
Start the app from the command line.
5050

5151
> node app.js
5252

0 commit comments

Comments
 (0)