From 1fd2d1a40ac6c1da39e73f3d6f7bd0df6be7fb46 Mon Sep 17 00:00:00 2001 From: Patrik Sundberg Date: Fri, 2 Mar 2018 02:39:04 -0800 Subject: [PATCH] Minor README updates --- README.md | 18 +++++++++++++++--- examples/bigquery/README.md | 2 +- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 9e14c2e9e..525e1c1aa 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,18 @@ # FHIR protocol buffers -This repository contains a google implementation of protocol buffers for -FHIR. +This repository contains a Google implementation of protocol buffers for +FHIR. This is not an officially supported Google product. -This is not an officially supported Google product. +To build this repository, install [bazel](https://bazel.build/), and then run + +``` +$ bazel test //... +``` + +For some ideas of how to use this code, see the [examples](./examples/): + +* [querying with BigQuery](./examples/bigquery/README.md) +* [Converting FHIR json to proto](./java/src/main/java/com/google/fhir/examples/FhirToProtoMain.java) + +This is still an early version, subject to change. For some background, please +see our blog post. Support for c++, go, and python is coming soon. diff --git a/examples/bigquery/README.md b/examples/bigquery/README.md index d6e9376c0..ac9608353 100644 --- a/examples/bigquery/README.md +++ b/examples/bigquery/README.md @@ -12,7 +12,7 @@ To run: ``` ./01-get-synthea.sh -./02-parse-into-protobuf +./02-parse-into-protobuf.sh ./03-upload-to-bq.sh ./04-run-queries.sh ```