├── .codeclimate.yml ├── .dockerignore ├── .editorconfig ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── actions │ ├── build-push-container │ │ └── action.yaml │ └── deploy-to-environment │ │ └── action.yaml ├── environments │ ├── values.dev.yaml │ ├── values.pr.yaml │ ├── values.prod.yaml │ └── values.test.yaml ├── pull_request_template.md └── workflows │ ├── charts-release.yaml │ ├── codeql-analysis.yaml │ ├── on-pr-closed.yaml │ ├── on-pr-opened.yaml │ ├── on-push.yaml │ └── unit-tests.yaml ├── .gitignore ├── CODE-OF-CONDUCT.md ├── COMPLIANCE.yaml ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── SECURITY.md ├── _config.yml ├── app ├── .dockerignore ├── .prettierrc ├── README.md ├── USAGE.md ├── app.js ├── bin │ └── www ├── cacheCleaner.js ├── config │ ├── custom-environment-variables.json │ ├── default.json │ ├── production.json │ └── test.json ├── docker │ ├── bindPython.sh │ └── python ├── lcov-fix.js ├── package-lock.json ├── package.json ├── src │ ├── components │ │ ├── carboneCopyApi.js │ │ ├── carboneRender.js │ │ ├── fileCache.js │ │ ├── log.js │ │ ├── upload.js │ │ ├── utils.js │ │ └── validation.js │ ├── docs │ │ ├── index.js │ │ └── v2.api-spec.yaml │ ├── middleware │ │ ├── authorization.js │ │ ├── authorizedParty.js │ │ └── openapi.js │ └── routes │ │ └── v2 │ │ ├── fileTypes.js │ │ ├── health.js │ │ ├── index.js │ │ └── template.js └── tests │ ├── common │ └── helper.js │ ├── fixtures │ └── base64Files.js │ └── unit │ └── components │ ├── authorization.spec.js │ ├── log.spec.js │ ├── utils.spec.js │ └── validation │ ├── middleware.spec.js │ ├── modelValidation.spec.js │ ├── models.spec.js │ └── validatorUtils.spec.js ├── bcgovpubcode.yml ├── charts └── cdogs │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── cronjob.yaml │ ├── deploymentconfig.yaml │ ├── hpa.yaml │ ├── networkpolicy.yaml │ ├── persistentvolumeclaim.yaml │ ├── route.yaml │ ├── secret.yaml │ ├── service.yaml │ └── serviceaccount.yaml │ └── values.yaml ├── examples ├── .prettierrc ├── 01-authenticated.sh ├── 01-unauthenticated.sh ├── README.md ├── doc-caching.js ├── package-lock.json ├── package.json ├── server.js └── template.txt └── k6 ├── README.md ├── sample_contexts.json ├── sample_template.txt └── templating.js /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/actions/build-push-container/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/.github/actions/build-push-container/action.yaml -------------------------------------------------------------------------------- /.github/actions/deploy-to-environment/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/.github/actions/deploy-to-environment/action.yaml -------------------------------------------------------------------------------- /.github/environments/values.dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/.github/environments/values.dev.yaml -------------------------------------------------------------------------------- /.github/environments/values.pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/.github/environments/values.pr.yaml -------------------------------------------------------------------------------- /.github/environments/values.prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/.github/environments/values.prod.yaml -------------------------------------------------------------------------------- /.github/environments/values.test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/.github/environments/values.test.yaml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/charts-release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/.github/workflows/charts-release.yaml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/.github/workflows/codeql-analysis.yaml -------------------------------------------------------------------------------- /.github/workflows/on-pr-closed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/.github/workflows/on-pr-closed.yaml -------------------------------------------------------------------------------- /.github/workflows/on-pr-opened.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/.github/workflows/on-pr-opened.yaml -------------------------------------------------------------------------------- /.github/workflows/on-push.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/.github/workflows/on-push.yaml -------------------------------------------------------------------------------- /.github/workflows/unit-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/.github/workflows/unit-tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /COMPLIANCE.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/COMPLIANCE.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/SECURITY.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/_config.yml -------------------------------------------------------------------------------- /app/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/app/.dockerignore -------------------------------------------------------------------------------- /app/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/app/.prettierrc -------------------------------------------------------------------------------- /app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/app/README.md -------------------------------------------------------------------------------- /app/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/app/USAGE.md -------------------------------------------------------------------------------- /app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/app/app.js -------------------------------------------------------------------------------- /app/bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/app/bin/www -------------------------------------------------------------------------------- /app/cacheCleaner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/app/cacheCleaner.js -------------------------------------------------------------------------------- /app/config/custom-environment-variables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/app/config/custom-environment-variables.json -------------------------------------------------------------------------------- /app/config/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/app/config/default.json -------------------------------------------------------------------------------- /app/config/production.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /app/config/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/app/config/test.json -------------------------------------------------------------------------------- /app/docker/bindPython.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/app/docker/bindPython.sh -------------------------------------------------------------------------------- /app/docker/python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/app/docker/python -------------------------------------------------------------------------------- /app/lcov-fix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/app/lcov-fix.js -------------------------------------------------------------------------------- /app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/app/package-lock.json -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/app/package.json -------------------------------------------------------------------------------- /app/src/components/carboneCopyApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/app/src/components/carboneCopyApi.js -------------------------------------------------------------------------------- /app/src/components/carboneRender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/app/src/components/carboneRender.js -------------------------------------------------------------------------------- /app/src/components/fileCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/app/src/components/fileCache.js -------------------------------------------------------------------------------- /app/src/components/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/app/src/components/log.js -------------------------------------------------------------------------------- /app/src/components/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/app/src/components/upload.js -------------------------------------------------------------------------------- /app/src/components/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/app/src/components/utils.js -------------------------------------------------------------------------------- /app/src/components/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/app/src/components/validation.js -------------------------------------------------------------------------------- /app/src/docs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/app/src/docs/index.js -------------------------------------------------------------------------------- /app/src/docs/v2.api-spec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/app/src/docs/v2.api-spec.yaml -------------------------------------------------------------------------------- /app/src/middleware/authorization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/app/src/middleware/authorization.js -------------------------------------------------------------------------------- /app/src/middleware/authorizedParty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/app/src/middleware/authorizedParty.js -------------------------------------------------------------------------------- /app/src/middleware/openapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/app/src/middleware/openapi.js -------------------------------------------------------------------------------- /app/src/routes/v2/fileTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/app/src/routes/v2/fileTypes.js -------------------------------------------------------------------------------- /app/src/routes/v2/health.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/app/src/routes/v2/health.js -------------------------------------------------------------------------------- /app/src/routes/v2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/app/src/routes/v2/index.js -------------------------------------------------------------------------------- /app/src/routes/v2/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/app/src/routes/v2/template.js -------------------------------------------------------------------------------- /app/tests/common/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/app/tests/common/helper.js -------------------------------------------------------------------------------- /app/tests/fixtures/base64Files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/app/tests/fixtures/base64Files.js -------------------------------------------------------------------------------- /app/tests/unit/components/authorization.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/app/tests/unit/components/authorization.spec.js -------------------------------------------------------------------------------- /app/tests/unit/components/log.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/app/tests/unit/components/log.spec.js -------------------------------------------------------------------------------- /app/tests/unit/components/utils.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/app/tests/unit/components/utils.spec.js -------------------------------------------------------------------------------- /app/tests/unit/components/validation/middleware.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/app/tests/unit/components/validation/middleware.spec.js -------------------------------------------------------------------------------- /app/tests/unit/components/validation/modelValidation.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/app/tests/unit/components/validation/modelValidation.spec.js -------------------------------------------------------------------------------- /app/tests/unit/components/validation/models.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/app/tests/unit/components/validation/models.spec.js -------------------------------------------------------------------------------- /app/tests/unit/components/validation/validatorUtils.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/app/tests/unit/components/validation/validatorUtils.spec.js -------------------------------------------------------------------------------- /bcgovpubcode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/bcgovpubcode.yml -------------------------------------------------------------------------------- /charts/cdogs/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/charts/cdogs/.helmignore -------------------------------------------------------------------------------- /charts/cdogs/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/charts/cdogs/Chart.yaml -------------------------------------------------------------------------------- /charts/cdogs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/charts/cdogs/README.md -------------------------------------------------------------------------------- /charts/cdogs/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/charts/cdogs/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/cdogs/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/charts/cdogs/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/cdogs/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/charts/cdogs/templates/configmap.yaml -------------------------------------------------------------------------------- /charts/cdogs/templates/cronjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/charts/cdogs/templates/cronjob.yaml -------------------------------------------------------------------------------- /charts/cdogs/templates/deploymentconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/charts/cdogs/templates/deploymentconfig.yaml -------------------------------------------------------------------------------- /charts/cdogs/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/charts/cdogs/templates/hpa.yaml -------------------------------------------------------------------------------- /charts/cdogs/templates/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/charts/cdogs/templates/networkpolicy.yaml -------------------------------------------------------------------------------- /charts/cdogs/templates/persistentvolumeclaim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/charts/cdogs/templates/persistentvolumeclaim.yaml -------------------------------------------------------------------------------- /charts/cdogs/templates/route.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/charts/cdogs/templates/route.yaml -------------------------------------------------------------------------------- /charts/cdogs/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/charts/cdogs/templates/secret.yaml -------------------------------------------------------------------------------- /charts/cdogs/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/charts/cdogs/templates/service.yaml -------------------------------------------------------------------------------- /charts/cdogs/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/charts/cdogs/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/cdogs/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/charts/cdogs/values.yaml -------------------------------------------------------------------------------- /examples/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/examples/.prettierrc -------------------------------------------------------------------------------- /examples/01-authenticated.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/examples/01-authenticated.sh -------------------------------------------------------------------------------- /examples/01-unauthenticated.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/examples/01-unauthenticated.sh -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/doc-caching.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/examples/doc-caching.js -------------------------------------------------------------------------------- /examples/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/examples/package-lock.json -------------------------------------------------------------------------------- /examples/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/examples/package.json -------------------------------------------------------------------------------- /examples/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/examples/server.js -------------------------------------------------------------------------------- /examples/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/examples/template.txt -------------------------------------------------------------------------------- /k6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/k6/README.md -------------------------------------------------------------------------------- /k6/sample_contexts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/k6/sample_contexts.json -------------------------------------------------------------------------------- /k6/sample_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/k6/sample_template.txt -------------------------------------------------------------------------------- /k6/templating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcgov/common-document-generation-service/HEAD/k6/templating.js --------------------------------------------------------------------------------