api-site/tools/build-firstapp-rst.sh
Marcela Bonell 8d6626b061 MyFirstApp: Official go for shade sdk
- Move shade to the published documents in the build script.
- Add shade resources and documentation in developer.openstack.org

Change-Id: I85885b1bd3a8ec641c36dce0338ad237aa35da50
2016-07-28 16:32:38 -05:00

16 lines
413 B
Bash
Executable File

#!/bin/bash -e
mkdir -p publish-docs
# Publish documents to api-ref for developer.openstack.org
for tag in libcloud shade; do
tools/build-rst.sh firstapp \
--tag ${tag} --target "api-ref/firstapp-${tag}"
done
# Draft documents
for tag in dotnet fog openstacksdk pkgcloud jclouds gophercloud; do
tools/build-rst.sh firstapp \
--tag ${tag} --target "api-ref/draft/firstapp-${tag}"
done