From be7ce2b07ac74f59256d59e12cea5b326db4d86a Mon Sep 17 00:00:00 2001 From: franciscojavierarceo Date: Fri, 19 Jan 2024 22:15:47 -0500 Subject: [PATCH 1/2] [docs] updated development guide to include compiling the protos Signed-off-by: franciscojavierarceo --- docs/project/development-guide.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/project/development-guide.md b/docs/project/development-guide.md index 931d0243d2b..57e228ae7da 100644 --- a/docs/project/development-guide.md +++ b/docs/project/development-guide.md @@ -154,6 +154,12 @@ pip install -e ".[dev]" This will allow the installed feast version to automatically reflect changes to your local development version of Feast without needing to reinstall everytime you make code changes. +10. Compile the protubufs +```sh +make compile-protos-python +``` + + ### Code Style & Linting Feast Python SDK / CLI codebase: - Conforms to [Black code style](https://black.readthedocs.io/en/stable/the_black_code_style/current_style.html) From 4bcb47ce4e37b01598f7025deff64554594db43a Mon Sep 17 00:00:00 2001 From: franciscojavierarceo Date: Sat, 20 Jan 2024 21:13:17 -0500 Subject: [PATCH 2/2] adding note on spinning up the docker image Signed-off-by: franciscojavierarceo --- docs/project/development-guide.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/project/development-guide.md b/docs/project/development-guide.md index 57e228ae7da..43dae1d678d 100644 --- a/docs/project/development-guide.md +++ b/docs/project/development-guide.md @@ -159,6 +159,10 @@ This will allow the installed feast version to automatically reflect changes to make compile-protos-python ``` +11. Spin up Docker Image +```sh +docker build -t docker-whale -f ./sdk/python/feast/infra/feature_servers/multicloud/Dockerfile . +``` ### Code Style & Linting Feast Python SDK / CLI codebase: