feat: can clone using git

This commit is contained in:
2025-02-28 23:08:40 +01:00
parent f10a1c0ac5
commit dfe2ac62e3
5 changed files with 123 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
project {
name local
description """
A simple local project that depends on ../plan for its utility scripts
"""
plan {
git "ssh://git@git.front.kjuulh.io/kjuulh/forest" path="examples/plan"
}
global {
someName "name"
someKey {
someNestedKey "somevalue"
some {
key {
val
val
}
}
}
}
templates type=jinja2 {
path "templates/*.jinja2"
output "output/"
}
scripts {
hello type=shell {}
}
}

View File

@@ -0,0 +1,5 @@
#!/usr/bin/env zsh
set -e
echo "hello world"

View File

@@ -0,0 +1,3 @@
something
val is mapping: {{ global.someKey.some.key.val is mapping }}