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
3 changes: 3 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,15 @@ git clone https://github.com/appwrite/console.git appwrite-console
```

### 2. Install dependencies with npm

Navigate to the Appwrite Console repository and install dependencies.

```bash
cd appwrite-console && npm install
```

### 3. Install and run Appwrite locally

When you run the Appwrite Console locally, it needs to point to a backend as well. The easiest way to do this is to run an Appwrite instance locally.

Follow the [install instructions](https://appwrite.io/docs/installation) in the Appwrite docs.
Expand Down
9 changes: 6 additions & 3 deletions src/lib/components/empty.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@

{#if single}
<article class="card u-grid u-cross-center u-width-full-line common-section">
<div class="u-flex u-flex-vertical u-cross-center u-gap-24">
<div
class="u-flex u-flex-vertical u-cross-center u-gap-24 u-width-full-line u-overflow-hidden">
<button
type="button"
on:click|preventDefault
Expand All @@ -40,12 +41,14 @@
</button>
<slot>
<div class="u-text-center">
<Heading size="7" tag="h2">Create your first {target} to get started.</Heading>
<Heading size="7" tag="h2" trimmed={false}>
Create your first {target} to get started.
</Heading>
<p class="body-text-2 u-bold u-margin-block-start-4">
Need a hand? Learn more in our documentation.
</p>
</div>
<div class="u-flex u-gap-16 u-main-center">
<div class="u-flex u-flex-wrap u-gap-16 u-main-center">
<Button
external
{href}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
},
[Platform.Web]: {
name: 'My Web App',
hostname: 'com.company.appname',
hostname: 'localhost',
tooltip:
'The hostname that your website will use to interact with the Appwrite APIs in production or development environments. No protocol or port number required.'
},
Expand Down