https://github.com/jamf/rendr-sample-blueprint-hello-world
A minimal Hello World blueprint for rendr
https://github.com/jamf/rendr-sample-blueprint-hello-world
Last synced: 11 months ago
JSON representation
A minimal Hello World blueprint for rendr
- Host: GitHub
- URL: https://github.com/jamf/rendr-sample-blueprint-hello-world
- Owner: jamf
- Created: 2020-10-22T19:54:06.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-10-22T20:15:19.000Z (over 5 years ago)
- Last Synced: 2025-06-05T10:16:57.994Z (about 1 year ago)
- Language: Shell
- Size: 1000 Bytes
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# `rendr` sample blueprint: Hello, World!
A minimal Hello World blueprint for [rendr](https://github.com/jamf/rendr/)
## Usage
Create a project from the blueprint:
rendr init hello --blueprint https://github.com/jamf/rendr-sample-blueprint-hello-world
Check out the functionality of your new project:
cd hello
./hello.sh
> Hello, world!
The blueprint can be customized with a different name to use for the greeting, by providing the `name` value:
rendr init hello --blueprint https://github.com/jamf/rendr-sample-blueprint-hello-world --value name:foo
cd hello
./hello.sh
> Hello, foo!