Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions src/lib/pages/domains/wizard/step1.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,12 @@
To add a domain to a locally hosted Appwrite project, you must first configure your server
domain.
<svelte:fragment slot="buttons">
<!-- TODO: add link to docs -->
<Button href="#/" external text>Learn more</Button>
<Button
href="https://appwrite.io/docs/environment-variables#vcs_(version_control_system)"
external
text>
Learn more
</Button>
</svelte:fragment>
</Alert>
{/if}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,13 @@
required />
{#if $func.version !== 'v3'}
<Alert type="info">
<svelte:fragment slot="title"
>Build commands now available for functions v3.0</svelte:fragment>
<svelte:fragment slot="title">
Build commands now available for functions v3.0
</svelte:fragment>
Update your function version to make use of new features including build commands.
<svelte:fragment slot="buttons">
<!-- TODO: add link to docs -->
<Button href="#/" external text>Learn more</Button>
<Button href="https://appwrite.io/docs/functions-develop#upgrade" external text
>Learn more</Button>
</svelte:fragment>
</Alert>
{:else}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,9 @@
Update your function version to make use of new features including customizable HTTP
data in your executions.
<svelte:fragment slot="buttons">
<!-- TODO: add link to docs -->
<Button href="#/" external text>Learn more</Button>
<Button href="https://appwrite.io/docs/functions-develop#upgrade" external text>
Learn more
</Button>
</svelte:fragment>
</Alert>
<InputTextarea
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,16 @@
<svelte:fragment slot="title">Your function is outdated</svelte:fragment>
Update your function version to make use of new features including build commands and HTTP
data in your executions. To update, follow the steps outlined in our
<!-- TODO: Add link to docs -->
<a href="#/" target="_blank" rel="noopener noreferrer" class="link">documentation</a>.
<a
href="https://appwrite.io/docs/functions-develop#upgrade"
target="_blank"
rel="noopener noreferrer"
class="link">documentation</a
>.
<svelte:fragment slot="buttons">
<!-- TODO: Add link to docs -->
<Button href="#/" external text>Learn more</Button>
<Button href="https://appwrite.io/docs/functions-develop#upgrade" external text>
Learn more
</Button>
</svelte:fragment>
</Alert>
{/if}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -290,8 +290,12 @@
When installing Git in a locally hosted Appwrite project, you must
first configure your environment variables.
<svelte:fragment slot="buttons">
<!-- TODO: add link to docs -->
<Button href="#/" external text>Learn more</Button>
<Button
href="https://appwrite.io/docs/environment-variables#vcs_(version_control_system)"
external
text>
Learn more
</Button>
</svelte:fragment>
</Alert>
{/if}
Expand All @@ -313,6 +317,7 @@
</div>
<Button
secondary
disabled={isSelfHosted && !isVcsEnabled}
on:click={() => wizard.start(ConnectExisting)}>
<span class="text">Connect Git</span>
</Button>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,12 @@
In order to clone a template to a locally hosted Appwrite project, you must set
up a Git integration and configure your environment variables.
<svelte:fragment slot="buttons">
<!-- TODO: add link to docs -->
<Button href="#/" external text>Learn more</Button>
<Button
href="https://appwrite.io/docs/environment-variables"
external
text>
Learn more
</Button>
</svelte:fragment>
</Alert>
{/if}
Expand All @@ -83,7 +87,10 @@
View source
<span class="icon-external-link" />
</Button>
<Button secondary on:click={() => connectTemplate($template)}>
<Button
disabled={isSelfHosted && !isVcsEnabled}
secondary
on:click={() => connectTemplate($template)}>
Create function
</Button>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,12 @@
When installing Git in a locally hosted Appwrite project, you must first configure
your environment variables.
<svelte:fragment slot="buttons">
<!-- TODO: add link to docs -->
<Button href="#/" external text>Learn more</Button>
<Button
href="https://appwrite.io/docs/environment-variables#vcs_(version_control_system)"
external
text>
Learn more
</Button>
</svelte:fragment>
</Alert>
{/if}
Expand All @@ -202,7 +206,10 @@

<div class="avatar"><SvgIcon name="appwrite" type="color" size={80} /></div>
</div>
<Button on:click={() => (showGitIstall = true)} secondary>
<Button
disabled={isSelfHosted && !isVcsEnabled}
on:click={() => (showGitIstall = true)}
secondary>
<span class="text">Add Installation</span>
</Button>
</div>
Expand Down