chore: change order of runtime and buildtime
This commit is contained in:
@@ -4,11 +4,12 @@
|
|||||||
<x-forms.input x-show="$wire.is_multiline === false" x-cloak placeholder="production" id="value"
|
<x-forms.input x-show="$wire.is_multiline === false" x-cloak placeholder="production" id="value"
|
||||||
x-bind:label="$wire.is_multiline === false && 'Value'" required />
|
x-bind:label="$wire.is_multiline === false && 'Value'" required />
|
||||||
@if (!$shared || $isNixpacks)
|
@if (!$shared || $isNixpacks)
|
||||||
<x-forms.checkbox id="is_runtime" helper="Make this variable available in the running container at runtime."
|
|
||||||
label="Available at Runtime" />
|
|
||||||
<x-forms.checkbox id="is_buildtime"
|
<x-forms.checkbox id="is_buildtime"
|
||||||
helper="Make this variable available during Docker build process. Useful for build secrets and dependencies."
|
helper="Make this variable available during Docker build process. Useful for build secrets and dependencies."
|
||||||
label="Available at Buildtime" />
|
label="Available at Buildtime" />
|
||||||
|
<x-forms.checkbox id="is_runtime"
|
||||||
|
helper="Make this variable available in the running container at runtime."
|
||||||
|
label="Available at Runtime" />
|
||||||
<x-forms.checkbox id="is_literal"
|
<x-forms.checkbox id="is_literal"
|
||||||
helper="This means that when you use $VARIABLES in a value, it should be interpreted as the actual characters '$VARIABLES' and not as the value of a variable named VARIABLE.<br><br>Useful if you have $ sign in your value and there are some characters after it, but you would not like to interpolate it from another value. In this case, you should set this to true."
|
helper="This means that when you use $VARIABLES in a value, it should be interpreted as the actual characters '$VARIABLES' and not as the value of a variable named VARIABLE.<br><br>Useful if you have $ sign in your value and there are some characters after it, but you would not like to interpolate it from another value. In this case, you should set this to true."
|
||||||
label="Is Literal?" />
|
label="Is Literal?" />
|
||||||
|
Reference in New Issue
Block a user