Skip to content

Commit 2c580bf

Browse files
Merge branch 'main' into 1950-Search-bar-UI
2 parents c8fc40f + 7aa526b commit 2c580bf

File tree

11 files changed

+71
-64
lines changed

11 files changed

+71
-64
lines changed

CONTENT.md

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
# Content Guidelines
22

3-
## Table of Contents
4-
5-
### Basics
3+
## Basics
64

75
Here are some essential markdoc syntax elements with code examples:
86

9-
#### Paragraphs and Line Breaks
7+
### Paragraphs and Line Breaks
108

119
To create a new paragraph, simply leave a blank line between lines of text.
1210

@@ -16,7 +14,7 @@ This is the first paragraph.
1614
This is the second paragraph.
1715
```
1816

19-
#### Headers
17+
### Headers
2018

2119
Headers are used to create section titles. Use hashtags (#) for headers, with more hashtags for lower-level headers.
2220

@@ -34,7 +32,7 @@ Headers can also be given ID's so they can be linked to and are present in the T
3432
# Header with ID {% #header-with-id %}
3533
```
3634

37-
#### Lists
35+
### Lists
3836

3937
Create ordered (numbered) and unordered (bulleted) lists using 1., \*, or -.
4038

@@ -54,7 +52,7 @@ Create ordered (numbered) and unordered (bulleted) lists using 1., \*, or -.
5452
- Cherry
5553
```
5654

57-
#### Links
55+
### Links
5856

5957
Create hyperlinks to other web pages or sections within your documentation.
6058

@@ -63,7 +61,7 @@ Create hyperlinks to other web pages or sections within your documentation.
6361
[Link to Section](#section-name)
6462
```
6563

66-
#### Images
64+
### Images
6765

6866
Embed images using the `![alt text](image URL)` syntax.
6967

@@ -82,7 +80,7 @@ In most cases, we need images in both light and dark mode such as:
8280
{% /only_light %}
8381
```
8482

85-
#### Code Blocks
83+
### Code Blocks
8684

8785
Format code blocks using triple backticks (```).
8886

@@ -95,15 +93,15 @@ def hello_world():
9593

9694
Remember to use a specific language label if the code is using an Appwrite SDK. Find the [list of available labels here](https://github.com/appwrite/website/blob/41bb6c71a8647016c88393003d3cf6c4edba1f76/src/lib/utils/references.ts#L26).
9795

98-
#### Inline Code
96+
### Inline Code
9997

10098
Highlight inline code with backticks (`) around the code snippet.
10199

102100
```md
103101
Use the `print()` function to display text.
104102
```
105103

106-
#### Emphasis and Strong Text
104+
### Emphasis and Strong Text
107105

108106
Use asterisks (\*) or underscores (\_) for emphasis and double asterisks or underscores for strong text.
109107

@@ -114,7 +112,7 @@ _Italic Text_ or _Italic Text_
114112
**Bold Text** or **Bold Text**
115113
```
116114

117-
#### Tables
115+
### Tables
118116

119117
Tables allow you to display structured data in your documentation. Use pipes (|) to separate columns and hyphens (-) to define the table header.
120118

@@ -146,7 +144,7 @@ Alternatively, use markdoc tables.
146144
{% /table %}
147145
```
148146

149-
#### Block Quotes
147+
### Block Quotes
150148

151149
Block quotes are used to emphasize or highlight text. To create a block quote, use the > symbol at the beginning of the quoted text.
152150

@@ -157,9 +155,9 @@ Block quotes are used to emphasize or highlight text. To create a block quote, u
157155

158156
These are the fundamental Markdown syntax elements you'll need to create well-structured and formatted documentation.
159157

160-
### Components
158+
## Components
161159

162-
#### Tabs
160+
### Tabs
163161

164162
```md
165163
{% tabs %}
@@ -173,7 +171,7 @@ Lorem ipsum dolor sit amet consectetur.
173171
{% /tabs %}
174172
```
175173

176-
#### Multicode Examples
174+
### Multicode Examples
177175

178176
<pre>
179177
{% multicode %}
@@ -191,7 +189,9 @@ print('test');
191189
{% /multicode %}
192190
</pre>
193191

194-
#### Sections
192+
Remember to use a specific language label if the code is using an Appwrite SDK. Find the [list of available labels here](https://github.com/appwrite/website/blob/41bb6c71a8647016c88393003d3cf6c4edba1f76/src/lib/utils/references.ts#L26).
193+
194+
### Sections
195195

196196
Use sections when there is a clear step-by-step format to a page. This is used mainly in journey pages and tutorials.
197197

@@ -209,15 +209,15 @@ Lorem ipsum dolor sit amet consectetur.
209209
{% /section %}
210210
```
211211

212-
#### Info
212+
### Info
213213

214214
```
215215
{% info title="Public Service Announcement" %}
216216
Lorem ipsum dolor sit amet consectetur.
217217
{% /info %}
218218
```
219219

220-
#### Icon
220+
### Icon
221221

222222
Available sizes are `s`, `m`, `l` and `xl`. Default: `s`.
223223

@@ -228,7 +228,7 @@ Available sizes are `s`, `m`, `l` and `xl`. Default: `s`.
228228
{% icon icon="github" size="xl" /%}
229229
```
230230

231-
#### Icon Image
231+
### Icon Image
232232

233233
Available sizes are `s`, `m`, `l` and `xl`. Default: `s`.
234234

@@ -239,7 +239,7 @@ Available sizes are `s`, `m`, `l` and `xl`. Default: `s`.
239239
{% icon_image src="/icon.png" alt="Icon" size="xl" /%}
240240
```
241241

242-
#### Only Light/Dark Theme
242+
### Only Light/Dark Theme
243243

244244
```
245245
{% only_dark %}
@@ -250,7 +250,7 @@ Available sizes are `s`, `m`, `l` and `xl`. Default: `s`.
250250
{% /only_light %}
251251
```
252252

253-
#### Cards
253+
### Cards
254254

255255
We use cards when we reference a list of links for navigation
256256

@@ -276,7 +276,7 @@ Get started with Appwrite and SvelteKit
276276
{% /cards %}
277277
```
278278

279-
#### Cards with icons
279+
### Cards with icons
280280

281281
We use cards when we reference a list of links for navigation, this variation has icons for extra hints visually.
282282

@@ -294,7 +294,7 @@ Configure FCM for push notification to Android and Apple devices.
294294
{% /cards %}
295295
```
296296

297-
#### Accordions
297+
### Accordions
298298

299299
Use accordions to reduce page size and collapse information that's not important when a reader is scrolling the page.
300300

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ Join our growing community around the world! See our official [Blog](https://app
4141

4242
## License
4343

44-
Appwrite website, docs and blog © 2024 by Appwrite is licensed under [CC BY-NC-ND 4.0](https://creativecommons.org/licenses/by-nc-nd/4.0/).
44+
Appwrite website, docs and blog © 2025 by Appwrite is licensed under [CC BY-NC-ND 4.0](https://creativecommons.org/licenses/by-nc-nd/4.0/).

STYLE.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -332,6 +332,13 @@ or a page needs to be sufficiently different from existing pages, follow exisitn
332332

333333
If you are proposing a new type of page, discuss an outline in your PR and ask for the Appwrite team's review.
334334

335+
### Placeholders
336+
337+
Whenever there's a need for a placeholder such as for an ID, use angle brackets (<>) over square brackets ([]) because square brackets can be confused for an array.
338+
339+
-`client.setEndpoint("https://<REGION>.cloud.appwrite.io")`
340+
-`client.setEndpoint("https://[REGION].cloud.appwrite.io")`
341+
335342
## Code snippets
336343

337344
For quick starts and tutorials, a developer must be able to follow code examples from beginning to end

pnpm-lock.yaml

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/lib/constants.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ type SocialStats = {
88

99
export const SOCIAL_STATS: SocialStats = {
1010
GITHUB: {
11-
STAT: '48K',
11+
STAT: '50K',
1212
LINK: 'https://github.com/appwrite/appwrite',
1313
EXTRA: {
14-
COMMITS: '24K+',
15-
PULL_REQUESTS: '4.5K+',
14+
COMMITS: '27K+',
15+
PULL_REQUESTS: '4.7K+',
1616
ISSUES: '3K+',
17-
OPEN_ISSUES: '500+',
17+
OPEN_ISSUES: '600+',
1818
CLOSED_ISSUES: '3.3K+',
19-
FORKS: '4.3K+',
19+
FORKS: '4.4K+',
2020
CONTRIBUTORS: '800+'
2121
}
2222
},
@@ -29,7 +29,7 @@ export const SOCIAL_STATS: SocialStats = {
2929
LINK: 'https://twitter.com/intent/follow?screen_name=appwrite'
3030
},
3131
YOUTUBE: {
32-
STAT: '11K+',
32+
STAT: '12K+',
3333
LINK: 'https://www.youtube.com/c/appwrite?sub_confirmation=1'
3434
}
3535
};

src/routes/blog/post/building-apps-with-bun-and-appwrite/+page.markdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Installing a self-hosted version of Appwrite is pretty straight-forward, all you
7575
--volume /var/run/docker.sock:/var/run/docker.sock \
7676
--volume "$(pwd)"/appwrite:/usr/src/code/appwrite:rw \
7777
--entrypoint="install" \
78-
appwrite/appwrite:1.7.2
78+
appwrite/appwrite:1.7.3
7979
```
8080

8181
For one-click setups, check out the [installation docs](https://appwrite.io/docs/self-hosting).

src/routes/blog/post/email-otp-auth-sveltekit/+page.markdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ docker run -it --rm \
4242
--volume /var/run/docker.sock:/var/run/docker.sock \
4343
--volume "$(pwd)"/appwrite:/usr/src/code/appwrite:rw \
4444
--entrypoint="install" \
45-
appwrite/appwrite:1.7.2
45+
appwrite/appwrite:1.7.3
4646
```
4747

4848
Once that is done, [set up email delivery](https://appwrite.io/docs/advanced/self-hosting/email) on your self-hosted Appwrite instance. This can be done by visiting your `appwrite` directory and updating the `.env` file in a similar manner as follows:

src/routes/blog/post/planetscale-databases-alternative/+page.markdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ docker run -it --rm \
7070
--volume /var/run/docker.sock:/var/run/docker.sock \
7171
--volume "$(pwd)"/appwrite:/usr/src/code/appwrite:rw \
7272
--entrypoint="install" \
73-
appwrite/appwrite:1.7.2
73+
appwrite/appwrite:1.7.3
7474
```
7575

7676
We have a dedicated [self-hosting guide](/docs/advanced/self-hosting) in our docs for more info.

src/routes/docs/advanced/self-hosting/+page.markdoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ docker run -it --rm \
3535
--volume /var/run/docker.sock:/var/run/docker.sock \
3636
--volume "$(pwd)"/appwrite:/usr/src/code/appwrite:rw \
3737
--entrypoint="install" \
38-
appwrite/appwrite:1.7.2
38+
appwrite/appwrite:1.7.3
3939
```
4040
{% /tabsitem %}
4141

@@ -46,15 +46,15 @@ docker run -it --rm ^
4646
--volume //var/run/docker.sock:/var/run/docker.sock ^
4747
--volume "%cd%"/appwrite:/usr/src/code/appwrite:rw ^
4848
--entrypoint="install" ^
49-
appwrite/appwrite:1.7.2
49+
appwrite/appwrite:1.7.3
5050
```
5151
## Powershell
5252
```powershell
5353
docker run -it --rm `
5454
--volume /var/run/docker.sock:/var/run/docker.sock `
5555
--volume ${pwd}/appwrite:/usr/src/code/appwrite:rw `
5656
--entrypoint="install" `
57-
appwrite/appwrite:1.7.2
57+
appwrite/appwrite:1.7.3
5858
```
5959
{% /tabsitem %}
6060
{% /tabs %}

src/routes/docs/advanced/self-hosting/update/+page.markdoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ docker run -it --rm \
3939
--volume /var/run/docker.sock:/var/run/docker.sock \
4040
--volume "$(pwd)"/appwrite:/usr/src/code/appwrite:rw \
4141
--entrypoint="upgrade" \
42-
appwrite/appwrite:1.7.2
42+
appwrite/appwrite:1.7.3
4343
```
4444

4545
## CMD
@@ -49,7 +49,7 @@ docker run -it --rm ^
4949
--volume //var/run/docker.sock:/var/run/docker.sock ^
5050
--volume "%cd%"/appwrite:/usr/src/code/appwrite:rw ^
5151
--entrypoint="upgrade" ^
52-
appwrite/appwrite:1.7.2
52+
appwrite/appwrite:1.7.3
5353
```
5454

5555
## PowerShell
@@ -59,7 +59,7 @@ docker run -it --rm `
5959
--volume /var/run/docker.sock:/var/run/docker.sock `
6060
--volume ${pwd}/appwrite:/usr/src/code/appwrite:rw `
6161
--entrypoint="upgrade" `
62-
appwrite/appwrite:1.7.2
62+
appwrite/appwrite:1.7.3
6363
```
6464

6565
This will pull the `docker-compose.yml` file for the new version and perform the installation.

0 commit comments

Comments
 (0)