1
0
Fork 0
mirror of synced 2024-05-02 03:42:37 +12:00
Go to file
dependabot-preview[bot] 9d995ddf36
Bump yargs-parser from 20.0.0 to 20.2.0
Bumps [yargs-parser](https://github.com/yargs/yargs-parser) from 20.0.0 to 20.2.0.
- [Release notes](https://github.com/yargs/yargs-parser/releases)
- [Changelog](https://github.com/yargs/yargs-parser/blob/master/CHANGELOG.md)
- [Commits](https://github.com/yargs/yargs-parser/compare/v20.0.0...v20.2.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-09-30 20:59:24 +00:00
.github/workflows Create codeql-analysis.yml 2020-09-10 13:07:28 +03:00
app Updated event name 2020-09-28 18:40:31 +03:00
bin Work in progress 2020-07-28 22:48:51 +03:00
docker Add env vars for ruby env 2020-07-19 17:44:08 +03:00
docs Merge branch 'master' of github.com:appwrite/appwrite into 0.7.x 2020-09-28 02:08:52 +03:00
public Merge branch 'master' of github.com:appwrite/appwrite into 0.7.x 2020-09-22 04:48:37 +03:00
src/Appwrite Merge branch '0.7.x' of github.com:appwrite/appwrite into feat-delete-user 2020-08-29 23:40:40 +03:00
tests Fixed test 2020-09-08 01:27:34 +03:00
.dockerignore Updated dockerignore 2020-07-20 10:16:46 +03:00
.env Updated SMTP server 2020-09-27 17:31:29 +03:00
.gitattributes Test gitattrubutes 2020-06-09 06:19:38 +03:00
.gitignore Added a new volume 2020-07-15 00:20:46 +03:00
.travis.yml Updated CI 2020-09-27 17:46:04 +03:00
build.sh Added param validations to build script 2020-05-24 01:07:50 +03:00
CHANGES.md Updated changelog 2020-09-29 13:51:51 +03:00
CODE_OF_CONDUCT.md Fixed Grammer and Typo 2019-10-02 15:15:34 +05:30
composer.json [BUG] case sensitive country flag code 2020-09-09 23:29:39 +03:00
composer.lock [BUG] case sensitive country flag code 2020-09-09 23:29:39 +03:00
CONTRIBUTING.md Merge branch 'master' of github.com:appwrite/appwrite into 0.7.x 2020-09-23 20:10:16 +03:00
docker-compose.nginx.yml Updated containers names 2020-07-15 23:29:34 +03:00
docker-compose.yml Updated traefik to v2.3 2020-09-27 18:01:30 +03:00
Dockerfile Upgraded swoole version to 4.5.3 2020-08-30 07:53:13 +03:00
Dockerfile.nginx Updated storage limit var 2020-07-19 18:17:57 +03:00
gulpfile.js Check for new version update 2020-07-25 09:26:25 +03:00
LICENSE Updated LICENSE 2019-05-12 08:00:06 +03:00
package-lock.json Bump yargs-parser from 20.0.0 to 20.2.0 2020-09-30 20:59:24 +00:00
package.json Bump yargs-parser from 20.0.0 to 20.2.0 2020-09-30 20:59:24 +00:00
phpunit.xml Added Event lib unit tests 2019-12-26 12:00:29 +02:00
README.md Merge branch 'master' of github.com:appwrite/appwrite into 0.7.x 2020-09-22 04:48:37 +03:00
SECURITY.md Create SECURITY.md 2020-09-08 16:44:14 +03:00

Appwrite Logo

A complete backend solution for your [Flutter / Vue / Angular / React / iOS / Android / *ANY OTHER*] app

Hacktoberfest Discord Docker Pulls Travis CI Twitter Account Follow Appwrite on StackShare

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

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

https://appwrite.io

Appwrite

Table of Contents:

Installation

Appwrite backend server is designed to run in a container 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 like 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:0.7.0

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:0.7.0

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:0.7.0

Once the Docker installation completes, 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 installation completes.

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

Getting Started

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

Services

  • 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 in admin mode.
  • Teams - Manage and group users in teams. Manage memberships, invites, and user roles within a team.
  • Database - Manage database collections and documents. Read, create, update, and delete documents and filter lists of documents collections using an advanced filter with graph-like capabilities.
  • Storage - Manage storage files. Read, create, delete, and preview files. Manipulate the preview of your files to fit your app perfectly. All files are scanned by ClamAV and stored in a secure and encrypted way.
  • Functions - Customize your Appwrite server by executing your custom code in an isolate environment, you can trigger your code on any Appwrite system event, manually or using a CRON schedule.
  • Locale - Track your user's location, and manage your app locale-based data.
  • Avatars - Manage your users' avatars, countries' flags, browser icons, credit card symbols, and generate QR codes.

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 wish 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)

Server

  • NodeJS (Maintained by the Appwrite Team)
  • PHP (Maintained by the Appwrite Team)
  • Deno - Beta (Maintained by the Appwrite Team)
  • Ruby - Beta (Maintained by the Appwrite Team)
  • Python - Beta (Maintained by the Appwrite Team)
  • Go Work in progress (Maintained by the Appwrite Team)
  • Dart Work in progress (Maintained by the Appwrite Team)

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

Contributing

All code contributions - including those of people having commit access - must go through a pull request and approved by a core developer before being merged. This is to ensure 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 security@appwrite.io instead of posting a public issue in GitHub.

Follow Us

Join our growing community around the world! Follow us on Twitter, Facebook Page, Facebook Group or join our live Discord server for more help, ideas, and discussions.

License

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