appwrite/appwrite

▲ 15 stars today★ 57,379⑂ 5,721

Appwrite® - complete cloud infrastructure for your web, mobile and AI apps. Including Auth, Databases, Storage, Functions, Messaging, Hosting, Realtime and more

About appwrite/appwrite

appwrite/appwrite is an open-source project on GitHub, mainly written in PHP. Appwrite® - complete cloud infrastructure for your web, mobile and AI apps. Including Auth, Databases, Storage, Functions, Messaging, Hosting, Realtime and more It currently holds 57,379 stars and 5,721 forks with 1,012 open issues, and was last pushed on 2026-09-16 (repository created 2019-04-08).

Project Overview

AI Homed tracks it on the Today's Trending board, currently at rank #67 with 15 new stars today.

GitHub Repository Details

Repository appwrite/appwrite · default branch main · size 455723 KB · watchers 424 · source: GitHub REST API and repository README

README

https://github.com/appwrite/appwrite/blob/HEAD/image


Appwrite

Appwrite is an open-source, all-in-one development platform. Use built-in backend infrastructure and web hosting, all from a single place.

Discord X Appwrite Cloud

English | 简体中文

Appwrite is an open-source development platform for building web, mobile, and AI applications. It brings together backend infrastructure and web hosting in one place, so teams can build, ship, and scale without stitching together a fragmented stack. Appwrite is available as a managed cloud platform and can also be self-hosted on infrastructure you control.

With Appwrite, you can add authentication, databases, storage, functions, messaging, realtime capabilities, and integrated web app hosting through Sites. It is designed to reduce the repetitive backend work required to launch modern products while giving developers secure primitives and flexible APIs to build production-ready applications faster.

Find out more at https://appwrite.io.

Table of Contents:

Products

Installation & Setup

The easiest way to get started with Appwrite is by signing up for Appwrite Cloud. While Appwrite Cloud is in public beta, you can build with Appwrite completely free, and we won't collect your credit card information.

Self-Hosting

Appwrite is designed to run in a containerized environment. Running your server is as easy as running one command from your terminal. You can either run Appwrite on your localhost using docker-compose or on any other container orchestration tool, such as Kubernetes, Docker Swarm, or Rancher.

Before running the installation command, make sure you have Docker installed on your machine:

Unix

docker run -it --rm \
    --publish 20080:20080 \
    --volume /var/run/docker.sock:/var/run/docker.sock \
    --volume "$(pwd)"/appwrite:/usr/src/code/appwrite:rw \
    --entrypoint="install" \
    appwrite/appwrite:2.2.0

Windows

CMD

docker run -it --rm ^
    --publish 20080:20080 ^
    --volume //var/run/docker.sock:/var/run/docker.sock ^
    --volume "%cd%"/appwrite:/usr/src/code/appwrite:rw ^
    --entrypoint="install" ^
    appwrite/appwrite:2.2.0

PowerShell

docker run -it --rm `
    --publish 20080:20080 `
    --volume /var/run/docker.sock:/var/run/docker.sock `
    --volume ${pwd}/appwrite:/usr/src/code/appwrite:rw `
    --entrypoint="install" `
    appwrite/appwrite:2.2.0

Once the Docker installation is complete, go to http://localhost to access the Appwrite console from your browser. Please note that on non-Linux native hosts, the server might take a few minutes to start after completing the installation.

Docker API version mismatch

If install or upgrade fails with an error like client version 1.52 is too new. Maximum supported API version is 1.42, the Docker CLI inside the Appwrite image is newer than your host Docker Engine. Pass DOCKER_API_VERSION set to the maximum API version from the error (or upgrade Docker on the host):

docker run -it --rm \
    --env DOCKER_API_VERSION=1.42 \
    --publish 20080:20080 \
    --volume /var/run/docker.sock:/var/run/docker.sock \
    --volume "$(pwd)"/appwrite:/usr/src/code/appwrite:rw \
    --entrypoint="install" \
    appwrite/appwrite:2.2.0

Use the same --env DOCKER_API_VERSION=... flag with --entrypoint="upgrade" when upgrading.

For advanced production and custom installation, check out our Docker environment variables docs. You can also use our public docker-compose.yml and .env files to manually set up an environment.

Upgrade from an Older Version

If you are upgrading your Appwrite server from an older version, you should use the Appwrite migration tool once your setup is completed. For more information regarding this, check out the Installation Docs.

One-Click Setups

In addition to running Appwrite locally, you can also launch Appwrite using a pre-configured setup. This allows you to get up and running quickly with Appwrite without installing Docker on your local machine.

Choose from one of the providers below:

https://github.com/appwrite/appwrite/blob/HEAD/DigitalOcean Logo
DigitalOcean
https://github.com/appwrite/appwrite/blob/HEAD/Akamai Logo
Akamai Compute
https://github.com/appwrite/appwrite/blob/HEAD/AWS Logo
AWS Marketplace

Getting Started

Getting started with Appwrite is as easy as creating a new project, choosing your platform, and integrating its SDK into your code. You can easily get started with your platform of choice by reading one of our Getting Started tutorials.

| Platform | Technology | | --------------------- | ---------------------------------------------------------------------------------- | | Web app | Quick start for Web | | | Quick start for Next.js | | | Quick start for React | | | Quick start for Vue.js | | | Quick start for Nuxt | | | Quick start for SvelteKit | | | Quick start for Refine | | | Quick start for Angular | | Mobile and Native | Quick start for React Native | | | Quick start for Flutter | | | Quick start for Apple | | | Quick start for Android | | Server | Quick start for Node.js | | | Quick start for Python | | | Quick start for .NET | | | Quick start for Dart | | | Quick start for Ruby | | | Quick start for Deno | | | Quick start for PHP | | | Quick start for Kotlin | | | Quick start for Swift | | | Quick start for Go | | | Quick start for Rust |

SDKs

Below is a list of currently supported platforms and languages. If you would like to help us add support to your platform of choice, you can go over to our SDK Generator project and view our contribution guide.

Client

Server

Looking for more SDKs? - Help us by contributing a pull request to our SDK Generator!

Architecture

flowchart TB
  Console & Flutter & iOS & Android & Web & Agents & MCP & CLI & SDKs & Terraform --> Appwrite
  Appwrite --> REST & Realtime & GraphQL & S3
  REST & Realtime & GraphQL & S3 --> securityLayer[Security layer]
  securityLayer --> services
  subgraph services [Services]
    Auth
    Databases
    Functions
    Sites
    Messaging
    Storage
    Avatars
    Locale
  end
  services --> Executor & Queue & Cache & Browser & SMTP & Embeddings
  Cache --> Database
  Queue --> Workers
  Executor --> openRuntimes[Open Runtimes]

Appwrite uses a microservices architecture that was designed for easy scaling and delegation of responsibilities. In addition, Appwrite supports multiple APIs, such as REST, WebSocket, and GraphQL to allow you to interact with your resources by leveraging your existing knowledge and protocols of choice.

The Appwrite API layer was designed to be extremely fast by leveraging in-memory caching and delegating any heavy-lifting tasks to the Appwrite background workers. The background workers also allow you to precisely control your compute capacity and costs using a message queue to handle the load. You can learn more about our architecture in AGENTS.md.

Contributing

All code contributions, including those of people having commit access, must go through a pull request and be approved by a core developer before being merged. This is to ensure a proper review of all the code.

We truly :heart: pull requests! If you wish to help, you can learn more about how you can contribute to this project in the contribution guide.

Security

Please see SECURITY.md for how to report a vulnerability. Do not open a public GitHub issue for security reports.

Follow Us

Join our growing community around the world! Read the Blog, or follow us on Discord, GitHub, X, LinkedIn, YouTube, daily.dev, Bluesky, TikTok, and Instagram.

License

This repository is available under the BSD 3-Clause License.

GitHub Stars & Activity

57,379Stars
5,721Forks
1,012Open issues
PHPLanguage

GitHub Popularity

GitHub stars57,379
Forks5,721
Open issues1,012
Primary languagePHP
LicenseBSD-3-Clause
Stars gained today15
Created2019-04-08
Last pushed2026-09-16

Trending History

Daily boardrank #67 · ▲ 15 stars
Weekly boardrank #79 · ▲ 88 stars
Monthly boardrank #65 · ▲ 472 stars

Related AI Projects

1

relaticle / relaticle

PHP★ 1,680⑂ 198▲ 10 stars
2

obra / superpowers

Shell★ 287,446⑂ 25,707▲ 522 stars
3

mattpocock / skills

Shell★ 263,286⑂ 22,208▲ 820 stars
4

affaan-m / ECC

JavaScript★ 259,730⑂ 38,861▲ 1,046 stars
5

NousResearch / hermes-agent

Python★ 245,944⑂ 0
6

deepseek-ai / deepseek-harness

TypeScript★ 225,686⑂ 0
7

n8n-io / n8n

TypeScript★ 204,528⑂ 60,702▲ 167 stars
8

Significant-Gravitas / AutoGPT

Python★ 187,373⑂ 0

More AI Rankings