https://github.com/deepsourcecorp/artifacts
Artifacts and types of DeepSource. Be cautious when updating/approving changes.
https://github.com/deepsourcecorp/artifacts
Last synced: 3 months ago
JSON representation
Artifacts and types of DeepSource. Be cautious when updating/approving changes.
- Host: GitHub
- URL: https://github.com/deepsourcecorp/artifacts
- Owner: DeepSourceCorp
- Created: 2018-09-01T19:45:12.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-12-20T12:56:54.000Z (4 months ago)
- Last Synced: 2024-12-20T13:47:40.862Z (4 months ago)
- Language: Go
- Homepage:
- Size: 431 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Contracts
Contract definitions for services in DeepSource.
### Error codes
| Level | Code |
|---------|------|
| ERROR | 0 |
| WARNING | 1 |### Running tests
- Install [uber/prototool](https://github.com/uber/prototool) and make sure it's available in your path.
- Run `make test`.### Beacon
- To generate golang stubs
```
brew install protobuf
go get -u github.com/golang/protobuf/{proto,protoc-gen-go}
protoc -I=./ --go_out=plugins=grpc:./ ./beacon.proto
```