Skip to content

Commit 1a53a61

Browse files
committed
console cleanup
1 parent 4c20600 commit 1a53a61

File tree

9 files changed

+35
-373
lines changed

9 files changed

+35
-373
lines changed

examples/docker-microservice/books/BookServer.js

-4
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,6 @@ app.use((error, req, res, next) => {
6464
res.status(errorObj.status).json(errorObj.message);
6565
});
6666

67-
// app.listen(process.env.BOOKS_PORT, () => {
68-
// console.log(`Book server running on port ${process.env.BOOKS_PORT} ...`);
69-
// });
70-
7167
app.listen(8888, () => {
7268
console.log(`Book server running on port 8888...`);
7369
});

examples/docker-microservice/books/chronos-config.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ chronos.use({
66
dockerized: true,
77
database: {
88
type: 'MongoDB',
9-
URI:
10-
' < INSERT MONGODB URL HERE > ',
9+
URI: ' < INSERT MONGODB URL HERE > ',
1110
},
12-
// notifications: [],
11+
notifications: [],
1312
});

examples/docker-microservice/customers/chronos-config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ chronos.use({
99
URI:
1010
' < INSERT MONGODB LINK HERE > ',
1111
},
12-
// notifications: [],
12+
notifications: [],
1313
});

examples/docker-microservice/customers/customerserver.js

-6
Original file line numberDiff line numberDiff line change
@@ -69,12 +69,6 @@ app.use((error, req, res, next) => {
6969
res.status(errorObj.status).json(errorObj.message);
7070
});
7171

72-
// app.listen(process.env.CUSTOMERS_PORT, () => {
73-
// console.log(
74-
// `Customer server running on port ${process.env.CUSTOMERS_PORT}...`
75-
// );
76-
// });
77-
7872
app.listen(5555, () => {
7973
console.log(`Customer server running on port 5555...`);
8074
});

examples/docker-microservice/frontend/chronos-config.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ chronos.use({
66
dockerized: true,
77
database: {
88
type: 'MongoDB',
9-
URI:
10-
' < INSERT MONGODB URL HERE > ',
9+
URI: ' < INSERT MONGODB URL HERE > ',
1110
},
12-
// notifications: [],
11+
notifications: [],
1312
});

0 commit comments

Comments
 (0)