-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1bcfde7
commit be02820
Showing
6 changed files
with
1,209 additions
and
2,551 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/bash | ||
set -xeuo pipefail | ||
|
||
# check if buf is installed | ||
if ! command -v buf &> /dev/null | ||
then | ||
echo "buf could not be found" | ||
echo "Please install buf: https://buf.build/docs/installation" | ||
exit | ||
fi | ||
|
||
buf generate protos |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
node_modules | ||
.next | ||
.next | ||
**/grpc_generated |
Oops, something went wrong.