IP Whitelist
If this has more than one IP, then only IPs in this list will be able to use this API
Deploy Source
{#await getDeploySourceTypes()}
Loading deploy source list
{:then srcs}
{:catch err}
{err}
{/await}
Presets
{#each Object.entries(presets) as [name, preset]}
{
data.commands = preset?.buildCmds
if(preset?.env && preset?.env.length > 0) {
data.env = preset?.env
}
if(preset?.configFiles && preset?.configFiles.length > 0) {
data.configFiles = preset?.configFiles
}
}}
>
{name}
{/each}
Webhooks
{#each data.webhooks as webh}
{/each}
{
data.webhooks.push({
id: "git",
token: "",
type: ""
})
data.webhooks = data.webhooks
}}>
New Webhook
Misc.