coolify/src/components/Application/Configuration/ActiveTab/BuildStep.svelte

30 lines
691 B
Svelte
Raw Normal View History

2021-03-24 21:11:14 +00:00
<script>
import { application } from "@store";
2021-03-24 21:11:14 +00:00
</script>
<div class="grid grid-cols-1 max-w-2xl md:mx-auto mx-6 text-center">
2021-03-24 21:11:14 +00:00
<label for="buildCommand">Build Command</label>
<input
class="mb-6"
2021-03-24 21:11:14 +00:00
id="buildCommand"
bind:value="{$application.build.command.build}"
placeholder="eg: yarn build"
/>
<label for="installCommand">Install Command</label>
<input
class="mb-6"
2021-03-24 21:11:14 +00:00
id="installCommand"
bind:value="{$application.build.command.installation}"
placeholder="eg: yarn install"
/>
<label for="baseDir">Base Directory</label>
<input
id="baseDir"
class="mb-6"
bind:value="{$application.build.directory}"
placeholder="/"
/>
2021-03-24 21:11:14 +00:00
</div>