Giter Site home page Giter Site logo

appwrite / awesome-appwrite Goto Github PK

View Code? Open in Web Editor NEW
927.0 927.0 280.0 108.6 MB

Carefully curated list of awesome Appwrite resources ๐Ÿ’ช

Home Page: https://appwrite.io

appwrite awesome awesome-list awesome-lists baas hacktoberfest mbaas

awesome-appwrite's Introduction

Our Appwrite Init event has concluded. You can check out all the new and upcoming features on our Init website ๐Ÿš€


Appwrite Logo

Appwrite is a backend platform for developing Web, Mobile, and Flutter applications. Built with the open source community and optimized for developer experience in the coding languages you love.

We're Hiring Hacktoberfest Discord Build Status X Account

English | ็ฎ€ไฝ“ไธญๆ–‡

Announcing Appwrite Cloud Public Beta! Sign up today!

Appwrite is an end-to-end backend server for Web, Mobile, Native, or Backend apps packaged as a set of Docker microservices. Appwrite abstracts the complexity and repetitiveness required to build a modern backend API from scratch and allows you to build secure apps faster.

Using Appwrite, you can easily integrate your app with user authentication and multiple sign-in methods, a database for storing and querying users and team data, storage and file management, image manipulation, Cloud Functions, and more services.


Appwrite - 100% open source alternative for Firebase | Product Hunt

Appwrite

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

Table of Contents:

Installation

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.

The easiest way to start running your Appwrite server is by running our docker-compose file. Before running the installation command, make sure you have Docker installed on your machine:

Unix

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

Windows

CMD

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

PowerShell

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

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 Logo
DigitalOcean
Gitpod Logo
Gitpod
Akamai Logo
Akamai Compute

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

Products

  • Account - Manage current user authentication and account. Track and manage the user sessions, devices, sign-in methods, and security logs.
  • Users - Manage and list all project users when building backend integrations with Server SDKs.
  • Teams - Manage and group users in teams. Manage memberships, invites, and user roles within a team.
  • Databases - Manage databases, collections, and documents. Read, create, update, and delete documents and filter lists of document collections using advanced filters.
  • Storage - Manage storage files. Read, create, delete, and preview files. Manipulate the preview of your files to perfectly fit your app. All files are scanned by ClamAV and stored in a secure and encrypted way.
  • Functions - Customize your Appwrite project by executing your custom code in a secure, isolated environment. You can trigger your code on any Appwrite system event either manually or using a CRON schedule.
  • Messaging - Communicate with your users through push notifications, emails, and SMS text messages using Appwrite Messaging.
  • Realtime - Listen to real-time events for any of your Appwrite services including users, storage, functions, databases, and more.
  • Locale - Track your user's location and manage your app locale-based data.
  • Avatars - Manage your users' avatars, countries' flags, browser icons, and credit card symbols. Generate QR codes from links or plaintext strings.

For the complete API documentation, visit https://appwrite.io/docs. For more tutorials, news and announcements check out our blog and Discord Server.

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

  • โœ… ย  Web (Maintained by the Appwrite Team)
  • โœ… ย  Flutter (Maintained by the Appwrite Team)
  • โœ… ย  Apple (Maintained by the Appwrite Team)
  • โœ… ย  Android (Maintained by the Appwrite Team)
  • โœ… ย  React Native - Beta (Maintained by the Appwrite Team)

Server

  • โœ… ย  NodeJS (Maintained by the Appwrite Team)
  • โœ… ย  PHP (Maintained by the Appwrite Team)
  • โœ… ย  Dart (Maintained by the Appwrite Team)
  • โœ… ย  Deno (Maintained by the Appwrite Team)
  • โœ… ย  Ruby (Maintained by the Appwrite Team)
  • โœ… ย  Python (Maintained by the Appwrite Team)
  • โœ… ย  Kotlin (Maintained by the Appwrite Team)
  • โœ… ย  Swift (Maintained by the Appwrite Team)
  • โœ… ย  .NET - Beta (Maintained by the Appwrite Team)

Community

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

Architecture

Appwrite 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

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 โค๏ธ pull requests! If you wish to help, you can learn more about how you can contribute to this project in the contribution guide.

Security

For security issues, kindly email us at [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.

awesome-appwrite's People

Contributors

adityaoberai avatar asmitbm avatar bhargav-joshi avatar christyjacob4 avatar drishtipeshwani avatar eldadfux avatar fernandoamz avatar ffex avatar gregor-davies avatar haimantika avatar harshita214 avatar imknight avatar jordi5107 avatar ln11211 avatar lohanidamodar avatar meldiron avatar mishmanners avatar mnayu avatar muskansingh2001 avatar muthuannamalai12 avatar nadyamilona avatar neonspork avatar noviicee avatar pineappleionic avatar pretty-19 avatar puddingpy avatar stnguyen90 avatar timothy22000 avatar vidushi-gupta avatar yugal41735 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

awesome-appwrite's Issues

Help developers by building a demo app with Appwrite ๐Ÿงฑ

Introduction

Appwrite has been and always will be a tool for developers. To emphasize this, we want to create the the best developer experience possible by providing enough guides and examples for new Appwriters.

Your task is to build a demo application that will use Appwrite under the hood. It can be anything! Web app, mobile app, Flutter, Unity, CLI tool... You are limited only by your imagination!

Requirements:

  • Your repository has to be publicly available
  • Your repository must use appwrite topic
  • Your app must be built with Appwrite
  • Your app needs to include Built with Appwrite badge

Task summary:

  • Build a demo app using Appwrite
  • Prepare nice-looking and informative README.md (screenshots more than welcome ๐Ÿคฉ)
  • Submit PR to appwrite/awesome-appwrite with a link to your repo

If you need any help, reach out to us on our Discord server.

Are you ready to work on this issue? Go ahead! We are accepting as many demo apps as the community can create. One note, quality over quantity.

Happy Appwriting!

Upgrade our issue templates to use GitHub issue forms โœ๏ธ

Introduction

GitHub has recently rolled out a public beta for their issue forms feature. This would allow you to create interactive issue templates and validate them ๐Ÿคฏ.

Appwrite currently uses the older issue template format. Your task is to create GitHub issue forms for this repository. Please use Appwrite's issue templates as a reference for this PR.

Tasks summary:

  • Fork & clone this repository
  • Prepare bug report issue form in .github/ISSUE_TEMPLATE/bug.yaml
  • Prepare documentation issue form in .github/ISSUE_TEMPLATE/documentation.yaml
  • Prepare feature request issue form in .github/ISSUE_TEMPLATE/feature.yaml
  • Push changes to master and test issue forms on your fork
  • Submit pull request

If you need any help, reach out to us on our Discord server.

Are you ready to work on this issue? ๐Ÿค” Let us know, and we will assign it to you ๐Ÿ˜Š

Happy Appwriting!

๐Ÿ› Bug Report: The hactoberfest 2022 link is broken.

๐Ÿ‘Ÿ Reproduction steps

Click on this https://github.com/appwrite/awesome-appwrite?tab=readme-ov-file#hacktoberfest-2022

๐Ÿ‘ Expected behavior

It redirects to https://github.blog/release-radar-sept-2022

๐Ÿ‘Ž Actual Behavior

It should redirect to https://github.blog/2022-10-28-release-radar-sept-2022/#appwrite-1-0

๐ŸŽฒ Appwrite version

Version 0.10.x

๐Ÿ’ป Operating system

Something else

๐Ÿงฑ Your Environment

No response

๐Ÿ‘€ Have you spent some time to check if this issue has been raised before?

  • I checked and didn't find similar issue

๐Ÿข Have you read the Code of Conduct?

๐Ÿ“š Documentation: It's quite difficult to customize your own

๐Ÿ’ญ Description

It's quite difficult to customize your own, hope you guys will add more documentation related to testing on docker swarm, k8s ... in addition, the components inside appwrite are also quite difficult to configure such as smtp, sms.....

๐Ÿ‘€ Have you spent some time to check if this issue has been raised before?

  • I checked and didn't find similar issue

๐Ÿข Have you read the Code of Conduct?

Taskly - better way to manage your tasks - Showcase (Built with Appwrite)

๐Ÿ”– Feature description

We created Taskly for Appwrite Hackathon in a few weeks. Following invite from @eldadfux on Twitter https://twitter.com/eldadfux/status/1525101405396148226 we would like to add Taskly to the list of projects built with Appwrite.

If you think some other place would be better let me know so I can work on a pull request.

Thanks!

๐ŸŽค Pitch

Taskly is an app to better manage tasks across all of the different task/todo/issue/project platforms. Developers (especially in open source) often use multiple websites like GitHub and Gitlab to work on their projects and contribute to other. There is also a fair share of project management tools that have their own task/todo lists. With Taskly all of those are merged into single interface for quick access and management. When you start using Taskly it will become a central hub for all of your tasks and give you more time to focus on actually doing your job.

You can read more from #appwritehack submission blog post https://dev.to/capjavert/taskly-better-way-to-manage-your-tasks-2d2m

๐Ÿ‘€ Have you spent some time to check if this issue has been raised before?

  • I checked and didn't find similar issue

๐Ÿข Have you read the Code of Conduct?

๐Ÿ“š Documentation:

๐Ÿ’ญ Description

I have found some issue/mistakes in the blog of ,"how to setup appwrite in Windows ".

๐Ÿ‘€ Have you spent some time to check if this issue has been raised before?

  • I checked and didn't find similar issue

๐Ÿข Have you read the Code of Conduct?

๐Ÿ› Bug Report:

๐Ÿ‘Ÿ Reproduction steps

I am starting to make the backend for a project so when I go to create an API model where I enter API key name and choose Expiration Date and when I click on the next button it gives me the error " param name does not option"

๐Ÿ‘ Expected behavior

step - 1 if i add both input field then its tack me to next page

step - 2 if my input data is not as formate then its give me proper error message or example

๐Ÿ‘Ž Actual Behavior

if I fill in both inputs then it tacks to the next page but it gives me an error

note : if my input is wrong then its give me proper error message that you input is wrong or give me some example

Screenshot from 2023-05-24 13-04-19
gives

๐ŸŽฒ Appwrite version

Version 0.10.x

๐Ÿ’ป Operating system

Linux

๐Ÿงฑ Your Environment

I am using Linux 18 version and use google chrome

๐Ÿ‘€ Have you spent some time to check if this issue has been raised before?

  • I checked and didn't find similar issue

๐Ÿข Have you read the Code of Conduct?

๐Ÿš€ Feature: awesome linting workflow

๐Ÿ”– Feature description

A github action workflow that checks pull requests submitted to make sure the changes are not breaking any awesome linting rules.

๐ŸŽค Pitch

Knowing that Awesome LInting has good rules that makes an Awesome Listing Repos, free from errors, repeated links, lists that doesnt have comma's, wrong use of full stops and more.

All this get handled by the Awesome linting workflow checks.

๐Ÿ‘€ Have you spent some time to check if this issue has been raised before?

  • I checked and didn't find similar issue

๐Ÿข Have you read the Code of Conduct?

Help developers by writing a blog post about Appwrite๐Ÿ—ž

Introduction

Appwrite has been and always will be a tool for developers. To emphasize this, we want to create the the best developer experience possible by providing enough guides and examples for new Appwriters.

Your task is to write a blog post about Appwrite. It can be anything! A story about your Appwrite journey, what concepts you learned by using Appwrite, guide how to connect Appwrite to something... You are limited only by your imagination. It can be anywhere! We accept submissions of articles on any well-known platform, whether it is Medium, Dev.to, HashNode or something else.

Requirements:

  • Your article has to be publicly available
  • Your article must tag appwrite in any way (hashtag, embedded, link...)
  • Your article must be at least 1000 words long
  • Your article should look nice ๐Ÿ‘€ (use titles, subtitles, screenshots, images, gifs, or even memes)

Task summary:

  • Write a blog post about Appwrite
  • Publish an article on your favorite platform or website (Medium, Dev.to, HashNod...)
  • Share the article on social media (Reddit / HackerNews / Twitter / Facebook / Other) - optional
  • Submit PR to appwrite/awesome-appwrite with a link to your article

This issue does not require assignment, and can be contributed by anyone! Just let us know you're working on it!

If you need any help, reach out to us on our Discord server.

Are you ready to work on this issue? Go ahead! We are accepting as many articles as the community can create. One note, quality over quantity.

Happy Appwriting!

๐Ÿ› Bug Report: unable to create new collection

๐Ÿ‘Ÿ Reproduction steps

Add new collection in VSC. After inputting the collection name and press enter, it will show error: Param "collectionId" is not optional.

๐Ÿ‘ Expected behavior

it should prompt for collectionId input

๐Ÿ‘Ž Actual Behavior

it prompts error

๐ŸŽฒ Appwrite version

Different version (specify in environment)

๐Ÿ’ป Operating system

Something else

๐Ÿงฑ Your Environment

No response

๐Ÿ‘€ Have you spent some time to check if this issue has been raised before?

  • I checked and didn't find similar issue

๐Ÿข Have you read the Code of Conduct?

Help developers by making an Appwrite Tutorial ๐ŸŽฅ

Introduction

Appwrite has been and always will be a tool for developers. To emphasize this, we want to create the the best developer experience possible by providing enough guides and examples for new Appwriters.

Your task is to create a tutorial regarding Appwrite. It can be anything! How to set up Appwrite, how to use Appwrite service, a demo of some features, presentation about Appwrite permissions... You are limited only by your imagination. It can be in any form! You could record a video on Youtube, stream on Twitch, write an article or host an event on the Discord server. As long as there is a record, we will accept your submission.

Requirements:

  • Your tutorial has to be publicly available
  • Your tutorial must link to appwrite in some way (link, logo in overlay, description...)
  • Your video must be at least 5 minutes long (shorter allowed if the quality is top-tier, for example, animation with voice-over)

Task summary:

  • Make a tutorial (video, stream, article, presentation...)
  • Mention Appwrite in some form (link Twitter, website, logo in the video...)
  • Submit PR to appwrite/awesome-appwrite with a link to your resource

If you need any help, reach out to us on our Discord server.

Are you ready to work on this issue? Go ahead! We are accepting as many tutorials as the community can create. One note, quality over quantity.

Happy Appwriting!

๐Ÿš€ Feature: Add Unity plugin to showcase

๐Ÿ”– Feature description

I have made a plugin for Unity to make it easy to login/register/verify email, generate a JWT and store a user session on disk.
The Github repository in question: https://github.com/AlexMeesters/unity-appwrite-plugin

๐ŸŽค Pitch

This plugin might be useful for users that are making a Unity game/project.
Using the JWT as a means to authenticate the user with matchmaking or game servers.
More features may get added as well in the future, depending on project needs.
For now this might fit best in the Showcase tab.

๐Ÿ‘€ Have you spent some time to check if this issue has been raised before?

  • I checked and didn't find similar issue

๐Ÿข Have you read the Code of Conduct?

๐Ÿ“š Let me join to your organization!

๐Ÿ’ญ Description

Hi there!
My name is Tran Nguyen Thuong Truong - @thuongtruong1009
Currently, I learning front-end.
I want to learn more and more about open-source code.
Hope to cooperate with you in the future.
Thank you!

๐Ÿ‘€ Have you spent some time to check if this issue has been raised before?

  • I checked and didn't find similar issue

๐Ÿข Have you read the Code of Conduct?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.