7f6e20ae5c
Add getting_started tutorial for Gophercloud SDK, code had been tested on a openstack cloud with neutron. Change-Id: Ife8bc23671ddff175a5ff424e08893c746d97482
16 lines
413 B
Bash
Executable File
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; do
|
|
tools/build-rst.sh firstapp \
|
|
--tag ${tag} --target "api-ref/firstapp-${tag}"
|
|
done
|
|
|
|
# Draft documents
|
|
for tag in dotnet fog openstacksdk pkgcloud shade jclouds gophercloud; do
|
|
tools/build-rst.sh firstapp \
|
|
--tag ${tag} --target "api-ref/draft/firstapp-${tag}"
|
|
done
|