Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add health checks to Node.js services #26

Merged
merged 9 commits into from
Sep 19, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
gitignore proto files
  • Loading branch information
Ace Nassri committed Aug 20, 2018
commit 1235d3a283c45e8fd24e9ffc4ac1e40cafa1642d
1 change: 1 addition & 0 deletions src/currencyservice/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
proto/
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You should probably undo this.

We want the app to be buildable from source just after git-clone, so we should keep the duplicate protos –it's fine for now (until/if we decide to use Bazel).

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done.

node_modules/
231 changes: 0 additions & 231 deletions src/currencyservice/proto/demo.proto

This file was deleted.

1 change: 1 addition & 0 deletions src/paymentservice/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
proto/
node_modules
.DS_Store
Loading