2022-02-02 15:05:33 +00:00
|
|
|
<#macro build rootParameters="" parameters="">
|
2021-11-18 12:40:02 +00:00
|
|
|
[source,bash]
|
|
|
|
----
|
2022-02-02 15:05:33 +00:00
|
|
|
bin/kc.[sh|bat]<#if rootParameters?has_content> ${rootParameters}</#if> build<#if parameters?has_content> ${parameters}</#if>
|
2021-11-18 12:40:02 +00:00
|
|
|
----
|
|
|
|
</#macro>
|
|
|
|
|
2022-02-02 15:05:33 +00:00
|
|
|
<#macro start rootParameters="" parameters="">
|
2021-11-18 12:40:02 +00:00
|
|
|
[source,bash]
|
|
|
|
----
|
2022-02-02 15:05:33 +00:00
|
|
|
bin/kc.[sh|bat]<#if rootParameters?has_content> ${rootParameters}</#if> start<#if parameters?has_content> ${parameters}</#if>
|
2021-11-18 12:40:02 +00:00
|
|
|
----
|
2022-01-27 10:17:22 +00:00
|
|
|
</#macro>
|
|
|
|
|
|
|
|
<#macro startdev parameters>
|
|
|
|
[source,bash]
|
|
|
|
----
|
|
|
|
bin/kc.[sh|bat] start-dev ${parameters}
|
|
|
|
----
|
2022-03-24 13:35:09 +00:00
|
|
|
</#macro>
|
|
|
|
|
|
|
|
<#macro export parameters>
|
|
|
|
[source,bash]
|
|
|
|
----
|
|
|
|
bin/kc.[sh|bat] export ${parameters}
|
|
|
|
----
|
|
|
|
</#macro>
|
|
|
|
|
|
|
|
<#macro import parameters>
|
|
|
|
[source,bash]
|
|
|
|
----
|
|
|
|
bin/kc.[sh|bat] import ${parameters}
|
|
|
|
----
|
2021-11-18 12:40:02 +00:00
|
|
|
</#macro>
|