Skip to content

Commit

Permalink
add bazel setup to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
stormymcstorm committed Apr 17, 2023
1 parent facfc7d commit 984585b
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,15 @@ JesturePipe is the backend pipeline for the Jesture application.

## Bazel Workspace Setup
```starlark
load("//:repositories.bzl", "jesturepipe_repositories")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
name = "jesturepipe",
strip_prefix = "JesturePipe-1.0.0",
url = "https://github.com/JestureApp/JesturePipe/archive/refs/tags/v1.0.0.zip",
)

load("@jesturepipe//:repositories.bzl", "jesturepipe_repositories")

jesturepipe_repositories()

Expand Down

0 comments on commit 984585b

Please sign in to comment.