Skip to content
Open
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
10 changes: 5 additions & 5 deletions src/lib/components/appwrite-network/data/pins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ export const pins = {
lat: 1.35,
lng: 103.82,
city: 'Singapore',
code: 'SIN',
code: 'SGP',
available: true
},
{
Expand Down Expand Up @@ -580,8 +580,8 @@ export const pins = {
lat: 1.35,
lng: 103.82,
city: 'Singapore',
code: 'SIN',
date: 'Q4 2025'
code: 'SGP',
available: true
},
{
lat: 37.77,
Expand Down Expand Up @@ -645,8 +645,8 @@ export const pins = {
lat: 1.35,
lng: 103.82,
city: 'Singapore',
code: 'SIN',
date: 'Q4 2025'
code: 'SGP',
available: true
},
{
lat: 37.77,
Expand Down
2 changes: 1 addition & 1 deletion src/routes/blog/post/the-appwrite-network/+page.markdoc
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ The Appwrite Cloud beta journey began with a single region in Frankfurt, which a
| Frankfurt (`FRA`) | Ready and operational | Yes | Yes | Available Now |
| Sydney (`SYD`) | Ready and operational | Yes | Yes | Available Now |
| New York City (`NYC`) | Ready and operational | Yes | Yes | Available Now |
| Singapore (`SGP`) | In work | Yes | Yes | Q4 2025 |
| Singapore (`SGP`) | Ready and operational | Yes | Yes | Available Now |
| San Francisco (`SFO`) | In work | Yes | Yes | Q4 2025 |
| Bangalore (`BLR`) | In plans | Yes | Yes | TBD |
| Amsterdam (`AMS`) | In plans | Yes | Yes | TBD |
Expand Down
4 changes: 2 additions & 2 deletions src/routes/docs/products/network/edges/+page.markdoc
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Appwrite edges are strategically distributed locations designed to process reque
{% /only_light %}

{% info title="We're expanding!" %}
Currently, Appwrite's edge network includes 4 locations. We are actively working to expand the number of edge locations globally. New locations will be strategically prioritized to ensure the best possible global coverage and performance for all users.
Currently, Appwrite's edge network includes 5 locations. We are actively working to expand the number of edge locations globally. New locations will be strategically prioritized to ensure the best possible global coverage and performance for all users.
{% /info %}

# List {% #list %}
Expand All @@ -27,7 +27,7 @@ Appwrite edges are globally distributed, ensuring low-latency interactions for u
| New York | NYC | Available |
| Sydney | SYD | Available |
| San Francisco | SFO | Available |
| Singapore | SGP | 2025 |
| Singapore | SGP | Available |
| Bangalore | BLR | 2025 |
| Amsterdam | AMS | 2025 |
| London | LON | 2025 |
Expand Down
2 changes: 1 addition & 1 deletion src/routes/docs/products/network/regions/+page.markdoc
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Appwrite is currently available in the following list of regions:
| New York | NYC | `https://nyc.cloud.appwrite.io/v1` | Available |
| Sydney | SYD | `https://syd.cloud.appwrite.io/v1` | Available |
| San Francisco | SFO | `https://sfo.cloud.appwrite.io/v1` | Available |
| Singapore | SGP | `coming soon` | Q4 2025 |
| Singapore | SGP | `https://sgp.cloud.appwrite.io/v1` | Available |
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

LGTM!

Singapore region documentation correctly updated with SGP code, live endpoint URL following the standard pattern, and Available status consistent with other files in this PR.

To confirm the endpoint is operational, you may verify its accessibility:


🏁 Script executed:

#!/bin/bash
# Description: Verify Singapore endpoint is accessible

curl -I https://sgp.cloud.appwrite.io/v1 2>&1 | head -5

Length of output: 447


Singapore endpoint returns HTTP 404
HEAD request to https://sgp.cloud.appwrite.io/v1 returned HTTP/2 404. Confirm the service is deployed and responding or update the documentation accordingly.

🤖 Prompt for AI Agents
In src/routes/docs/products/network/regions/+page.markdoc around line 26, the
Singapore endpoint listed (https://sgp.cloud.appwrite.io/v1) returns HTTP 404;
verify whether the service is actually deployed and responding at that URL, and
then either update the document to the correct working endpoint or change the
availability column to reflect the endpoint is unavailable; ensure the URL is
tested with a HEAD/GET request and the doc entry is edited to show the accurate
endpoint or status.

| Bangalore | BLR | `coming soon` | TBD |
| Amsterdam | AMS | `coming soon` | TBD |
| London | LON | `coming soon` | TBD |
Expand Down
4 changes: 2 additions & 2 deletions src/routes/products/functions/(components)/RegionsMap.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@
{
lat: 1.3521,
lng: 103.8198,
city: 'Signapore',
city: 'Singapore',
code: 'SGP',
available: false
available: true
}
]);

Expand Down
Binary file modified static/images/docs/network/dark/edges-map.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/images/docs/network/dark/regions-map.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/images/docs/network/edges-map.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/images/docs/network/regions-map.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.