Skip to content

Commit b64e80f

Browse files
committed
Final tweaks pt2
1 parent 381f1db commit b64e80f

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ Signing Up
7979
Using the Query Tool
8080
<br>
8181
<br>
82-
<a href="#"><img src="./app/assets/query_tool.gif" alt="Query-Tool-Demo" title="Query-Tool-Demo" align="center" height="500" /></a></a>
82+
<a href="#"><img src="./app/assets/query_tool.gif" alt="Query-Tool-Demo" title="Query-Tool-Demo" align="center" height="475" /></a></a>
8383

8484
#
8585
###### Return to [Top](#chronos)
@@ -89,7 +89,7 @@ Using the Query Tool
8989
This is for the latest Chronos version **5.2 release and later**.
9090

9191
- Stable release: 7.0.0
92-
- LTS release: 6.1.0
92+
- LTS release: 7.0.0
9393

9494
### Pre-Installation
9595
Make sure you're running version 14.16.1 of <a href="#"><img src="./app/assets/node-logo-color.png" alt="Node" title="Node" align="center" height="20" /></a></a>, which is the most recent LTS (long-term support) version.

examples/docker/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
![Chronos logo](https://raw.githubusercontent.com/Chronos2-0/Chronos/master/app/assets/logo2.png)
22
## Microservices Architecture
3-
Microservices architecture for testing [Chronos](https://github.com/oslabs-beta/Chronos), a microservice communication and health visualizer.
3+
Microservices architecture for testing [Chronos](https://github.com/open-source-labs/Chronos), a microservice communication and health visualizer.
44

55
## Purpose and Design - with docker implemented to avoid having to run multiple services in multiple terminals
66
This sample microservices architecture allows developers to explore the functionality of Chronos but with one docker compose command. This consists of four microservices, which are contained within the directories:

examples/gRPC/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
![Chronos logo](https://raw.githubusercontent.com/Chronos2-0/Chronos/master/app/assets/logo2.png)
22
## Microservices Architecture
3-
Microservices architecture for testing [Chronos](https://github.com/oslabs-beta/Chronos), a microservice communication and health visualizer.
3+
Microservices architecture for testing [Chronos](https://github.com/open-source-labs/Chronos), a microservice communication and health visualizer.
44

55
## Purpose and Design
66
This sample microservices architecture allows developers to explore the functionality of Chronos with gRPC calls. It consists of 3 microservices, which are contained within the directories:

examples/microservices/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ On each microservice in example/microserivces, perform the following steps
2222
- ** Reverse Proxy .env file will only require CHRONOS_URI
2323

2424
```
25-
Microservice_URI = mongodb+srv://<username>:<password>@cluster0.o2hx5.mongodb.net/<dbname>?retryWrites=true&w=majority
25+
<Microservice_URI> = mongodb+srv://<username>:<password>@cluster0.o2hx5.mongodb.net/<dbname>?retryWrites=true&w=majority
2626
2727
CHRONOS_URI = mongodb+srv://<username>:<password>@cluster0.o2hx5.mongodb.net/<dbname>?retryWrites=true&w=majority
2828
```
2929
- In each Microservice Mode.js file import and set the Microservice_URI
3030

3131
```
32-
const myURI = process.env.Microservice_URI;
32+
const myURI = process.env.<Microservice_URI>;
3333
3434
```
3535

@@ -55,7 +55,7 @@ chronos.use({
5555
- Head over to localhost:3000 to view reverse proxy acting as the frontend of this microservice example
5656
- Start adding data!
5757
- Run `npm install` in the Chronos root folder.
58-
- Run `npm run both` to start Electron app
58+
- Then, run `npm run both` in the Chronos root folder to start the Electron app
5959
- Add a new application in Chronos app dashboard.
6060
- The URI should be your CHRONOS_URI
6161

examples/microservices/books/bookserver.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ const app = express();
1515
const bodyParser = require('body-parser');
1616
const controller = require('./BookController.js');
1717

18-
// UNCOMMENT THE LINE BELOW IF YOU HAVE A SPECIFIED 'jmxuri' PROPERTY IN
18+
// UNCOMMENT THE LINE BELOW IF YOU HAVE A SPECIFIED A 'jmxuri' PROPERTY IN
1919
// YOUR 'chronos-config.js' FILE
20-
// hronos.kafka();
20+
// chronos.kafka();
2121

2222
// UNCOMMENT THE LINE BELOW AND PASS IN YOUR CHOSEN ARGUMENTS
2323
// app.use('/', cmd.microCom('books', 'mongo', process.env.BOOK_URI, 'yes'));

0 commit comments

Comments
 (0)