From 984585bf7a665bee33280d2a4d9e813c7f0ff252 Mon Sep 17 00:00:00 2001 From: Carson Storm Date: Mon, 17 Apr 2023 14:35:30 -0600 Subject: [PATCH] add bazel setup to readme --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8c1f5d8..4f92f60 100644 --- a/README.md +++ b/README.md @@ -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()