daml/docs/source/app-dev/grpc/generate-protodocs
Beth Aitman 591f3ff94e
Rework the app dev docs (rebased) (#699)
* Move application architecture guide

* Changing titles etc

* Reshuffling

* More reshuffling of files and content

* Refactoring iinto more sensible pages:

* Getting most stuff into place

* A ton of tidying up

* Fixing things up

* Tidying up

* Address review comments

* Fixes

* Fix warnings etc

* Update redirects

* Try to add copyright header

* Fix headers issue

* Clarify DAML-LF relationship

* Change I missed
2019-04-26 14:09:38 +02:00

12 lines
282 B
Bash
Executable File

#!/usr/bin/env bash
set -ex
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
GRPC_DIR="${SCRIPT_DIR}/../../grpc-definitions"
DOC_FILE="${GRPC_DIR}/target/docs/proto-docs.rst"
pushd "${GRPC_DIR}"
./gen-docs.sh
cp "${DOC_FILE}" "${SCRIPT_DIR}/source/"
popd