2021-03-24 21:11:14 +00:00
< script >
2021-04-02 13:05:23 +00:00
import { application } from "@store";
2021-04-04 12:57:42 +00:00
import Tooltip from "../../../Tooltip/TooltipInfo.svelte";
2021-03-24 21:11:14 +00:00
< / script >
2021-04-02 13:05:23 +00:00
< div class = "grid grid-cols-1 max-w-2xl md:mx-auto mx-6 text-center" >
2021-04-04 12:57:42 +00:00
< label for = "installCommand"
>Install Command < Tooltip label = "Command to run for installing dependencies. eg: yarn install." / >
< / label >
2021-03-24 21:11:14 +00:00
< input
2021-04-02 13:05:23 +00:00
class="mb-6"
2021-03-24 21:11:14 +00:00
id="installCommand"
bind:value="{ $application . build . command . installation } "
placeholder="eg: yarn install"
/>
2021-04-04 12:57:42 +00:00
< label for = "buildCommand" > Build Command < Tooltip label = "Command to run for building your application. If empty, no build phase initiated in the deploy process." / > < / label >
2021-04-02 13:05:23 +00:00
< input
class="mb-6"
2021-04-04 12:57:42 +00:00
id="buildCommand"
bind:value="{ $application . build . command . build } "
placeholder="eg: yarn build"
2021-04-02 13:05:23 +00:00
/>
2021-03-24 21:11:14 +00:00
< / div >