https://github.com/godeltech/codereview.templaterenderer
https://github.com/godeltech/codereview.templaterenderer
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/godeltech/codereview.templaterenderer
- Owner: GodelTech
- License: mit
- Created: 2021-01-29T05:10:13.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-02-13T10:38:59.000Z (3 months ago)
- Last Synced: 2025-02-13T11:34:02.546Z (3 months ago)
- Language: C#
- Size: 26.4 KB
- Stars: 0
- Watchers: 12
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CodeReview.TemplateRenderer
Docker Image: https://hub.docker.com/r/godeltech/codereview.template-renderer
## Description
Command line template rending tool. It accepts JSON file as data source and .liquid template as template file.
## Usage
### How To build Docker Image
To build the Docker image, run the following command:
```bash
docker build -t codereview.template-renderer .
```### How to run Docker Container
```bash
docker run codereview.template-renderer liquid -o result.txt -t template.liquid -d data.json
```### Commands And Parameters
#### liquid
Create issue summary using provided manifest
> dotnet CodeReview.TemplateRenderer.dll liquid -o result.txt -t template.liquid -d data.json
| Arguments | Key | Required | Type | Description argument |
|------------|-----|----------|--------|-------------------------------|
| --template | -t | true | string | Path to scriban template file |
| --data | -d | true | string | Path to data file |
| --output | -o | true | string | Output file path |## License
This project is licensed under the MIT License. See the LICENSE file for more details.