Appwrite Appwrite is an open-source, all-in-one development platform. Use built-in backend infrastructure and web hosting, all from a single place. English | 简体中文 Appwrite is an open-source development platform for…
Appwrite
Appwrite is an open-source, all-in-one development platform. Use built-in backend infrastructure and web hosting, all from a single place.



English | [简体中文](README-CN.md)
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](#products)
- [Installation \& Setup](#installation--setup)
- [Self-Hosting](#self-hosting)
- [One-Click Setups](#one-click-setups)
- [Getting Started](#getting-started)
- [Architecture](#architecture)
- [Contributing](#contributing)
- [Security](#security)
- [Follow Us](#follow-us)
- [License](#license)
Products
- Appwrite Auth - Secure user authentication with multiple login methods including email/password, SMS, OAuth, anonymous sessions, and magic links. Includes session management, multi-factor authentication, and user verification flows.
- Appwrite Databases - Scalable structured data storage with support for databases, tables, and rows. Includes querying, pagination, indexing, and relationships to model complex application data.
- Appwrite Storage - Secure file storage with support for uploads, downloads, encryption, compression, and file transformations for media and assets.
- Appwrite Functions - Serverless compute platform to run custom backend logic in isolated runtimes, triggered by events or scheduled jobs.15 runtimes supported.
- Appwrite Messaging - Multi-channel messaging system for sending emails, SMS, and push notifications to users for engagement, alerts, and transactional workflows.
- Appwrite Sites - Integrated hosting platform to deploy and scale web applications with support for custom domains, SSR, and seamless backend integration. Git integration and previews are supported.
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
bash
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:1.9.0
Windows
CMD
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:1.9.0
PowerShell
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:1.9.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.
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:
DigitalOcean
Akamai Compute
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
- :white_check_mark: Web
- :white_check_mark: Flutter
- :white_check_mark: Apple
- :white_check_mark: Android
- :white_check_mark: React Native
Server
- :white_check_mark: Node.js
- :white_check_mark: Python
- :white_check_mark: Dart
- :white_check_mark: PHP
- :white_check_mark: Ruby
- :white_check_mark: .NET
- :white_check_mark: Go
- :white_check_mark: Swift
- :white_check_mark: Kotlin
- :white_check_mark: Rust
Architecture

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 the [contribution guide](CONTRIBUTING.md#architecture-1).
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](CONTRIBUTING.md).
Security
For security issues, kindly email us at [[email protected]](mailto:[email protected]) instead of posting a public issue on GitHub.
Follow Us
Join our growing community around the world! Check out our official Blog. Follow us on X, LinkedIn, Dev Community or join our live Discord server for more help, ideas, and discussions.
License
This repository is available under the [BSD 3-Clause License](./LICENSE).
Members
-
appwrite ★ PINNED
Appwrite® - complete cloud infrastructure for your web, mobile and AI apps. Including Auth, Databases, Storage, Functions, Messaging, Hosting, Realtime and more
TypeScript ★ 57k 29m agoExplain → -
arena ★ PINNED
Benchmarking AI models on their knowledge of Appwrite SDKs and services. See how well LLMs understand Appwrite, with and without skill files.
TypeScript ★ 41 1mo agoExplain → -
mcp ★ PINNED
Appwrite’s MCP server. Operating your backend has never been easier.
Python ★ 71 21h agoExplain → -
skills ★ PINNED
No description.
★ 24 2mo agoExplain → -
sdk-for-react-native
[READ ONLY] Official Appwrite React Native SDK 💙 ⚛︎
TypeScript ★ 4.3k 14d agoExplain → -
awesome-appwrite
Carefully curated list of awesome Appwrite resources 💪
★ 1.1k 1y agoExplain → -
pink
Pink. Appwrite's official framework agnostic design system 🎨 🩷
HTML ★ 525 3mo agoExplain → -
sdk-for-flutter
[READ-ONLY] Official Appwrite Flutter SDK 💙
Dart ★ 417 14d agoExplain → -
console
The Console that makes Appwrite tick from the browser 🖥
Svelte ★ 392 15h agoExplain → -
sdk-for-web
[READ-ONLY] Official Appwrite Web SDK 🧡
TypeScript ★ 335 14d agoExplain → -
website
The Appwrite website, docs and blog 🏠
Svelte ★ 332 9h agoExplain → -
sdk-generator
Generating SDKs for multiple programming languages and platforms ⚙️
Twig ★ 324 34m agoExplain → -
sdk-for-python
[READ-ONLY] Official Appwrite Python SDK 🐍
Python ★ 269 3d agoExplain → -
sdk-for-node
[READ-ONLY] Official Appwrite Node.js SDK 🟢
TypeScript ★ 257 3d agoExplain → -
demo-todo-with-react ▣
A basic demo example for integrating between Appwrite & React JS 💙
JavaScript ★ 196 2y agoExplain → -
templates
Templates for Appwrite Functions ⚡️🌩️
JavaScript ★ 174 2mo agoExplain → -
sdk-for-php
[READ-ONLY] Official Appwrite PHP SDK 🐘
PHP ★ 156 3d agoExplain → -
sdk-for-android
[READ-ONLY] Official Appwrite Android SDK 💚 🤖
Kotlin ★ 155 14d agoExplain → -
sdk-for-dotnet
[READ-ONLY] Official Appwrite .NET SDK
C# ★ 130 3d agoExplain → -
playground-for-flutter
Simple examples that help you get started with Appwrite + Flutter (=❤️)
C++ ★ 127 6mo agoExplain → -
sdk-for-apple
[READ-ONLY] Official Appwrite SDK for Apple Devices 🍎
Swift ★ 123 14d agoExplain → -
demos-for-functions ▣
Demo for Appwrite cloud functions in multiple coding languages ⚡️ 🌩
Kotlin ★ 122 4y agoExplain → -
sdk-for-dart
[READ-ONLY] Official Appwrite Dart SDK 💙
Dart ★ 118 3d agoExplain → -
demo-todo-with-vue ▣
A basic demo example for integrating between Appwrite & Vue JS 💚
Vue ★ 116 3y agoExplain → -
playground-for-web
Simple examples that help you get started with Appwrite + Web (=❤️)
HTML ★ 110 2mo agoExplain → -
demos-for-react
Demos and tutorials for getting started with Appwrite + React JS
JavaScript ★ 108 2y agoExplain → -
dynamic-links
Implement Dynamic Links with Appwrite Functions!
HTML ★ 105 3y agoExplain → -
demo-todo-with-svelte ▣
A basic demo example for integrating between Appwrite & Svelte🧡
Svelte ★ 105 3y agoExplain → -
sdk-for-cli
[READ-ONLY] Official Appwrite CLI >_
TypeScript ★ 100 1h agoExplain → -
sdk-for-go
[READ-ONLY] Official Appwrite GO SDK
Go ★ 95 3d agoExplain → -
sdk-for-kotlin
[READ-ONLY] Official Appwrite Kotlin SDK 💙🧡
Kotlin ★ 91 3d agoExplain → -
docs ▣
The official https://appwrite.io/docs documentation 📝
HTML ★ 85 2y agoExplain → -
sdk-for-deno
[READ-ONLY] Official Appwrite Deno SDK 🦕
TypeScript ★ 81 10mo agoExplain → -
playground-for-python
Simple examples that help you get started with Appwrite + Python (=❤️)
Python ★ 74 2mo agoExplain → -
sdk-for-svelte
Appwrite SDK for Svelte 🧡 ⚠️ Warning - this SDK was designed to support Appwrite 0.9 and is not compatible with the latest Appwrite versions. We are planing to refactor it as part of the SDK Generator for better support and maintenance.
Svelte ★ 74 2y agoExplain → -
demo-almost-netflix-for-flutter ▣
A Netflix clone built with @appwrite + @flutter
Dart ★ 74 3y agoExplain → -
php-clamav ▣
ClamAV network and pipe client for PHP
PHP ★ 73 6mo agoExplain → -
playground-for-android
Simple examples that help you get started with Appwrite + Android (=❤️)
Kotlin ★ 72 2mo agoExplain → -
playground-for-node
Simple examples that help you get started with Appwrite + Node.js (=❤️)
JavaScript ★ 71 2mo agoExplain → -
lite
A single container version of Appwrite with minimum must have features ⚖️
Shell ★ 67 3y agoExplain → -
demo-todo-with-angular ▣
A basic demo example for integrating between Appwrite & Angular ❤️
TypeScript ★ 66 3y agoExplain → -
sdk-for-ruby
[READ-ONLY] Official Appwrite Ruby SDK 💎 🔴
Ruby ★ 64 3d agoExplain → -
assistant
Appwrite's AI assistant 🧠
JavaScript ★ 64 5mo agoExplain → -
realtime-1-million
Learn how we built and tested our realtime server to 1M+ concurrent connections
Shell ★ 59 2y agoExplain → -
demo-todo-with-nextjs ▣
A basic demo example for integrating between Appwrite & Next.js 💙
TypeScript ★ 57 3y agoExplain → -
sdk-for-swift
[READ-ONLY] Official Appwrite Swift SDK 🦅🍎
Swift ★ 56 3d agoExplain → -
docker-clamav
ClamAV docker image with auto database updates
Shell ★ 56 1y agoExplain → -
rfc
Architectural and new features proposals and designs for Appwrite 📖
★ 54 5mo agoExplain → -
runtimes
Appwrite configuration for Cloud Function runtimes settings 🌩
PHP ★ 49 1mo agoExplain → -
docker-smtp
SMTP server docker container for sending emails.
Dockerfile ★ 48 4y agoExplain → -
demos-for-vue
Demos and tutorials for getting started with Appwrite + Vue.js
Vue ★ 47 2y agoExplain → -
demos-for-astro
No description.
Astro ★ 46 2y agoExplain → -
builtwith
Explore popular projects built with Appwrite 🔍
TypeScript ★ 44 2mo agoExplain → -
playground-for-apple-swiftui
Simple examples that help you get started with Appwrite + Apple with SwiftUI (=❤️)
Swift ★ 43 2mo agoExplain → -
playground-for-dart
Simple examples that help you get started with Appwrite + Dart (=❤️) as an Appwrite server-side integration.
Dart ★ 41 2y agoExplain → -
30daysofappwrite
Landing Page for 30 Days of Appwrite
Vue ★ 41 3y agoExplain → -
demos-for-svelte
Demos and tutorials for getting started with Appwrite + Svelte
Svelte ★ 40 1y agoExplain → -
integration-for-gitpod
No description.
Shell ★ 40 3mo agoExplain → -
demo-todo-with-flutter ▣
A basic demo example for integrating between Appwrite & Flutter 💙
Dart ★ 40 3y agoExplain → -
demo-quiz-with-flutter ▣
A basic demo example for integrating between Appwrite & Flutter 💙
Dart ★ 40 3y agoExplain → -
playground-for-php
Simple examples that help you get started with Appwrite + PHP (=❤️)
PHP ★ 39 11d agoExplain → -
hacktoberfest ▣
🏡 Home to Appwrite's Hacktoberfest Landing Page
Svelte ★ 38 2y agoExplain → -
docker-resque-ui
Docker container for Resque web UI
Dockerfile ★ 38 4y agoExplain → -
docker-mariadb
MariaDB container with Appwrite server DB schema and tables initialized and ready to use for fresh installations.
Dockerfile ★ 37 2y agoExplain → -
playground-for-dotnet
Simple examples that help you get started with Appwrite + .NET (=❤️)
C# ★ 35 3y agoExplain → -
playground-for-react-native
Simple examples that help you get started with Appwrite + React Native (=❤️)
TypeScript ★ 34 1y agoExplain → -
playground-for-deno
Simple examples that help you get started with Appwrite + Deno (=❤️)
TypeScript ★ 34 1y agoExplain → -
sdk-for-rust
[READ-ONLY] Official Appwrite Rust SDK ⚙️
Rust ★ 33 3d agoExplain → -
playground-for-swift
Simple examples that help you get started with Appwrite + Swift for Server (=❤️)
Swift ★ 33 2mo agoExplain → -
functions-starter
No description.
Java ★ 33 2y agoExplain → -
docker-flutter
Flutter docker image for Appwrite CI
Dockerfile ★ 33 4y agoExplain → -
install ▣
CLI tool for easy installation of a self-hosted Appwrite server
PHP ★ 32 5y agoExplain → -
docker-telegraf
Telegraf Docker image, pre-configured for Appwrite server setup.
Dockerfile ★ 32 3y agoExplain → -
demos-for-angular
Demos and tutorials for getting started with Appwrite + Angular JS
TypeScript ★ 30 3y agoExplain → -
playground-for-ruby
Simple examples that help you get started with Appwrite + Ruby (=❤️)
Ruby ★ 30 2mo agoExplain → -
setup-for-appwrite
No description.
JavaScript ★ 29 1y agoExplain → -
demo-almost-netflix-for-web ▣
A Netflix clone built with @appwrite + @vuejs + @nuxt
Vue ★ 29 3y agoExplain → -
playground-for-kotlin
Simple examples that help you get started with Appwrite + Kotlin (=❤️)
Kotlin ★ 29 1y agoExplain → -
demo-job-portal-with-apple ▣
A basic demo example for integrating between Appwrite & Apple (=❤️)
Swift ★ 28 4y agoExplain → -
docker-altair
GraphQL client explorer packaged as a docker container 🕸
JavaScript ★ 28 3y agoExplain → -
playground-for-apple-uikit
Simple examples that help you get started with Appwrite + iOS with UIKit (=❤️)
Swift ★ 27 2mo agoExplain → -
docker-influxdb
InfluxDB Docker image, pre-configured for Appwrite server setup.
Shell ★ 26 3y agoExplain → -
demo-watertracker-with-flutter ▣
No description.
Dart ★ 25 3y agoExplain → -
docker-base
Appwrite base image
Dockerfile ★ 24 3d agoExplain → -
docker-requestcatcher
RequestCatcher for catching requests response during development
Python ★ 24 6mo agoExplain → -
templates-for-sites
Repository for Appwrite Sites templates
TypeScript ★ 24 4mo agoExplain → -
docker-mailcatcher
MailCatcher for catching mail content during development
Dockerfile ★ 22 8mo agoExplain → -
sdk-for-console
No description.
TypeScript ★ 21 1h agoExplain → -
integration-for-digitalocean
Appwrite integration for DigitalOcean 1-Click Marketplace
Shell ★ 20 2y agoExplain → -
benchmarks
The Appwrite laboratory for benchmarks and experiments 🧪 👩🔬 🥽
★ 20 2y agoExplain → -
.github
No description.
★ 19 8mo agoExplain → -
demo-quiz-with-android ▣
No description.
Kotlin ★ 19 3y agoExplain → -
demo-almost-netflix-for-android ▣
No description.
Kotlin ★ 16 3y agoExplain → -
docker-swagger
Swagger UI Docker image, pre-configured for Appwrite server setup
★ 16 3y agoExplain → -
demo-getstarted-with-android ▣
No description.
Kotlin ★ 14 3y agoExplain → -
demo-almost-netflix-for-apple ▣
No description.
Swift ★ 14 4y agoExplain → -
template-for-portfolio
No description.
★ 13 4mo agoExplain → -
template-for-store
No description.
★ 13 1y agoExplain → -
flutter_web_auth ⑂
Flutter plugin for authenticating a user with a web service
Dart ★ 13 4y agoExplain → -
php-scrypt
No description.
Dockerfile ★ 13 4y agoExplain → -
starter-for-flutter
Appwrite's starter kit for Android 💙
Dart ★ 12 7mo agoExplain → -
template-for-event
No description.
★ 12 4mo agoExplain → -
template-for-newsletter
No description.
★ 12 1y agoExplain → -
template-for-blog
No description.
★ 12 1y agoExplain → -
mcp-for-docs
The official Appwrite Docs MCP server. Enable your IDE and agents to browse the Appwrite Documentation.
TypeScript ★ 11 13d agoExplain → -
snapwrite
A tool to convert code snippets into beautiful Appwrite-themed social-media images
Svelte ★ 11 2mo agoExplain → -
sdk-for-node-cli ▣
No description.
JavaScript ★ 11 4y agoExplain → -
starter-for-nextjs
Appwrite's starter kit for Next.js 👩💻
JavaScript ★ 11 7mo agoExplain → -
template-for-documentation
No description.
MDX ★ 11 9mo agoExplain → -
starter-for-svelte
Appwrite's starter kit for Svelte 👩💻
Svelte ★ 10 7mo agoExplain → -
claude-plugin
The official Appwrite plugin for Claude
★ 10 3mo agoExplain → -
incidents
Details of incidents that occurred in Appwrite Cloud
★ 9 17h agoExplain → -
cursor-plugin
The official Appwrite plugin for Cursor
★ 9 1d agoExplain → -
starter-for-react-native
Appwrite's starter kit for Android 💙 ⚛︎
TypeScript ★ 9 7mo agoExplain → -
docker-janitor ⑂
This containers performs continuous cleanups on unused Docker resources on the host
Shell ★ 9 2y agoExplain → -
docker-browser
No description.
TypeScript ★ 8 5d agoExplain → -
rules
Something new and cool...
JavaScript ★ 8 3mo agoExplain → -
starter-for-react
Appwrite's starter kit for React 👩💻
JavaScript ★ 8 4mo agoExplain → -
starter-for-ios
Appwrite's starter kit for iOS
Swift ★ 8 1y agoExplain → -
starter-for-vue
Appwrite's starter kit for Vue.js 👩💻
Vue ★ 8 7mo agoExplain → -
cortext
Mystery project
TypeScript ★ 7 5d agoExplain → -
starter-for-nuxt
Appwrite's starter kit for Nuxt 👩💻
Vue ★ 7 7mo agoExplain → -
makers
Makers of Appwrite
Svelte ★ 7 3y agoExplain → -
synapse
Operating system gateway for remote serverless environments 📺
TypeScript ★ 6 1y agoExplain → -
monitoring
A lightweight system monitoring container that tracks resource usage and triggers incidents
Go ★ 6 1y agoExplain → -
playground-for-rust
No description.
★ 6 4y agoExplain → -
sdk-for-unity
No description.
C# ★ 5 14d agoExplain → -
terraform-provider-appwrite
The terraform provider for 'Appwrite Cloud' and 'Appwrite Self Hosted'.
Go ★ 5 10d agoExplain → -
starter-for-android
Appwrite's starter kit for Android 💚🤖
Kotlin ★ 5 1y agoExplain → -
starter-for-js
No description.
HTML ★ 5 7mo agoExplain → -
playground-for-go
Simple examples that help you get started with Appwrite + Go (=❤️)
Go ★ 5 1y agoExplain → -
docker-geo
No description.
PHP ★ 4 1mo agoExplain → -
starter-for-analog
Appwrite's starter kit for Analog 👩💻
HTML ★ 4 7mo agoExplain → -
starter-for-astro
Appwrite's starter kit for Astro 👩💻
Astro ★ 4 7mo agoExplain → -
demos-for-android
Demos and tutorials for getting started with Appwrite + Android
Kotlin ★ 4 2y agoExplain → -
demos-for-apple
Demos and tutorials for getting started with Appwrite + Apple
Swift ★ 4 2y agoExplain → -
getting-started-projects ▣
No description.
TypeScript ★ 4 3y agoExplain → -
specs
Appwrite's official API specifications in Swagger 2.0 and OpenAPI 3.x formats
JavaScript ★ 3 4d agoExplain → -
starter-for-tanstack-start
Appwrite's starter kit for TanStack Start 🏝️
TypeScript ★ 3 9mo agoExplain → -
codeimage ⑂
A tool to beautify your code screenshots. Built with SolidJS and Fastify.
TypeScript ★ 3 2y agoExplain → -
demos-for-flutter
Demos and tutorials for getting started with Appwrite + Flutter
★ 3 2y agoExplain → -
claudear
Unified watcher service that monitors issue sources and spawns AI agents in response.\n\nhttps://claudear.app
Rust ★ 2 1d agoExplain → -
sdk-for-react
React SDK for Appwrite.
TypeScript ★ 2 1mo agoExplain → -
sdk-for-md ▣
[READ-ONLY] Official Appwrite Markdown SDK (which is basically a bunch of MD files to feed AI with) 🖤
TypeScript ★ 2 4mo agoExplain → -
homebrew-appwrite
Official Homebrew tap for Appwrite
Ruby ★ 1 44m agoExplain → -
embedding
Simple and easy to use embedding services
Rust ★ 1 1mo agoExplain → -
sponsorships
No description.
TypeScript ★ 1 3mo agoExplain → -
demo-for-impersonation
No description.
TypeScript ★ 1 4mo agoExplain → -
starter-for-remix
Appwrite's starter kit for Remix 👩💻
TypeScript ★ 1 7mo agoExplain → -
starter-for-angular
Appwrite's starter kit for Angular ❤️
HTML ★ 1 7mo agoExplain → -
zed-extension
The official Appwrite MCP extension for Zed
Rust ★ 0 14d agoExplain → -
docker-postgres
No description.
Shell ★ 0 25d agoExplain → -
codex-plugin
No description.
★ 0 2mo agoExplain → -
docker-ollama
No description.
Shell ★ 0 3mo agoExplain → -
sdk-for-console-php
No description.
PHP ★ 0 4mo agoExplain → -
templates-for-frameworks ▣
No description.
TypeScript ★ 0 11mo agoExplain →
No repos match these filters.