af0bdd71d3
CIAM-5057
34 lines
No EOL
716 B
Text
34 lines
No EOL
716 B
Text
<#macro build rootParameters="" parameters="">
|
|
[source,bash]
|
|
----
|
|
bin/kc.[sh|bat]<#if rootParameters?has_content> ${rootParameters}</#if> build<#if parameters?has_content> ${parameters}</#if>
|
|
----
|
|
</#macro>
|
|
|
|
<#macro start rootParameters="" parameters="">
|
|
[source,bash]
|
|
----
|
|
bin/kc.[sh|bat]<#if rootParameters?has_content> ${rootParameters}</#if> start<#if parameters?has_content> ${parameters}</#if>
|
|
----
|
|
</#macro>
|
|
|
|
<#macro startdev parameters>
|
|
[source,bash]
|
|
----
|
|
bin/kc.[sh|bat] start-dev ${parameters}
|
|
----
|
|
</#macro>
|
|
|
|
<#macro export parameters>
|
|
[source,bash]
|
|
----
|
|
bin/kc.[sh|bat] export ${parameters}
|
|
----
|
|
</#macro>
|
|
|
|
<#macro import parameters>
|
|
[source,bash]
|
|
----
|
|
bin/kc.[sh|bat] import ${parameters}
|
|
----
|
|
</#macro> |