├── .DEREK.yml ├── .github └── workflows │ └── validate.yml ├── LICENSE ├── README.md ├── ci └── check_store_functions.sh ├── functions.json └── templates.json /.DEREK.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/store/HEAD/.DEREK.yml -------------------------------------------------------------------------------- /.github/workflows/validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/store/HEAD/.github/workflows/validate.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/store/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/store/HEAD/README.md -------------------------------------------------------------------------------- /ci/check_store_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/store/HEAD/ci/check_store_functions.sh -------------------------------------------------------------------------------- /functions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/store/HEAD/functions.json -------------------------------------------------------------------------------- /templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openfaas/store/HEAD/templates.json --------------------------------------------------------------------------------