Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
<!--

  ** DO NOT EDIT THIS FILE
  **
  ** This file was automatically generated by the [CLENCLI](https://github.com/awslabs/clencli)
  ** 1) Make all changes directly to YAML files: clencli/<file>.yaml
  ** 2) Run `clencli render template --name=<file>` to render this file
  **
  ** By following this practice we ensure standard and high-quality accross multiple projects.
  ** DO NOT EDIT THIS FILE

-->

{{ if has (ds "db") "logo" }}
![{{ (ds "db").logo.label }}]({{ (ds "db").logo.url }})

> {{ (ds "db").logo.label }}
{{end}}

{{ if has (ds "db") "shields" }}{{ range $badge := (ds "db").shields.badges }}{{ if ne $badge.image "" }}[![{{ $badge.description }}]({{$badge.image}})]({{$badge.url}}){{ else }}![{{ $badge.description }}]({{ $badge.url }}){{ end }}{{ end }}{{ end }}

# {{ (ds "db").app.name }} {{ if has (ds "db").app "id" }} ( {{ (ds "db").app.id }} ) {{end}}

{{ if has (ds "db").app "function" }}{{ (ds "db").app.function }}{{end}}

## Table of Contents
---


{{ $db := ds "db" }}

{{ if has (ds "db") "usage" }}{{ $usage := $db.usage }}{{ if ne $usage "" }} - [Usage](#usage) {{end}}{{end}}
{{ if has (ds "db") "prerequisites" }}{{ $prerequisites := len $db.prerequisites }}{{ if gt $prerequisites 0 }} - [Prerequisites](#prerequisites) {{end}}{{end}}
{{ if has (ds "db") "installing" }}{{ $installing := $db.installing }}{{ if ne $installing "" }} - [Installing](#installing) {{end}}{{end}}
{{ if has (ds "db") "testing" }}{{ $testing := $db.testing }}{{ if ne $testing "" }} - [Testing](#testing) {{end}}{{end}}
{{ if has (ds "db") "deployment" }}{{ $deployment := $db.deployment }}{{ if ne $deployment "" }} - [Deployment](#deployment) {{end}}{{end}}
{{ if has (ds "db") "acknowledgments" }}{{ $acknowledgments := len $db.acknowledgments }}{{ if gt $acknowledgments 0  }} - [Acknowledgments](#acknowledgments) {{end}}{{end}}
{{ if has (ds "db") "contributors" }}{{ $contributors := len $db.contributors }}{{ if gt $contributors 0 }} - [Contributors](#contributors) {{end}}{{end}}
{{ if has (ds "db") "references" }}{{ $references := len $db.references }}{{ if gt $references 0 }} - [References](#references) {{end}}{{end}}
{{ if has (ds "db") "license" }}{{ $license := $db.license }}{{ if ne $license "" }} - [License](#license) {{end}}{{end}}
{{ if has (ds "db") "copyright" }}{{ $copyright := $db.copyright }}{{ if ne $copyright "" }} - [Copyright](#copyright) {{end}}{{end}}

{{ if has (ds "db") "screenshots" }}
## Screenshots
---
<details open>
  <summary>Expand</summary>

{{ range $screenshot := (ds "db").screenshots }}
| ![{{ $screenshot.label }}]({{ $screenshot.url }}) |
|:--:|
| *{{ $screenshot.caption }}* |
{{ end }}
</details>
{{ end }}

{{ if has (ds "db") "usage" }}
## Usage
---
<details open>
  <summary>Expand</summary>

{{ (ds "db").usage }}
</details>
{{ end }}

{{ if has (ds "db") "prerequisites" }}
## Prerequisites
---
<details>
  <summary>Expand</summary>

{{ range $prerequisite := (ds "db").prerequisites }}{{ printf "- [%s](%s) - %s\n" $prerequisite.name $prerequisite.url $prerequisite.description }}{{end}}
</details>
{{end}}

{{ if has (ds "db") "installing" }}
## Installing
---
<details open>
  <summary>Expand</summary>

{{ (ds "db").installing }}
</details>
{{end}}

{{ if has (ds "db") "testing" }}
## Testing
---
<details>
  <summary>Expand</summary>

{{ (ds "db").testing }}
</details>
{{end}}

{{ if has (ds "db") "deployment" }}
## Deployment
---
<details>
  <summary>Expand</summary>

{{ (ds "db").deployment }}
</details>
{{end}}

{{ if has (ds "db") "include" }}
{{ range $file := (ds "db").include }}
{{ defineDatasource $file $file }}
{{ include $file }}{{end}}
{{end}}

{{ if has (ds "db") "contributors" }}
## Contributors
---
<details open>
  <summary>Expand</summary>

|     Name     |         Email        |       Role      |
|:------------:|:--------------------:|:---------------:|
{{ range $contributor := (ds "db").contributors }}{{ printf "|  %s  |  %s  |  %s  |\n" $contributor.name $contributor.email $contributor.role}}{{end}}
</details>
{{end}}

{{ if has (ds "db") "acknowledgments" }}
## Acknowledgments
---
<details>
  <summary>Expand</summary>

Gratitude for assistance:
{{ range $ack := (ds "db").acknowledgments }}{{ printf "  * %s - %s\n" $ack.name $ack.role }}{{end}}

</details>
{{end}}

{{ if has (ds "db") "references" }}
## References
---
<details open>
  <summary>Expand</summary>

{{ range $ref := (ds "db").references }}{{ printf "  * [%s](%s) - %s\n" $ref.name $ref.url $ref.description }}{{end}}

</details>
{{end}}

{{ if has (ds "db") "license" }}
## License
---
{{ (ds "db").license}}{{ end }}
{{ if (file.Exists "LICENSE") }}
For more information please read [LICENSE](LICENSE).
{{ end }}

{{ if has (ds "db") "copyright" }}
## Copyright
---
```
{{ (ds "db").copyright}}
```
{{end}}