# Contributing We would ❀️ for you to contribute to Appwrite and help make it better! We want contributing to Appwrite to be fun, enjoyable, and educational for anyone and everyone. All contributions are welcome, including issues, new docs as well as updates and tweaks, blog posts, workshops, and more. ## How to Start? If you are worried or don’t know where to start, check out our next section explaining what kind of help we could use and where can you get involved. You can reach out with questions to [Eldad Fux (@eldadfux)](https://twitter.com/eldadfux) or [@appwrite_io](https://twitter.com/appwrite_io) on Twitter, and anyone from the [Appwrite team on Discord](https://discord.gg/GSeTUeA). You can also submit an issue, and a maintainer can guide you! ## Code of Conduct Help us keep Appwrite open and inclusive. Please read and follow our [Code of Conduct](/CODE_OF_CONDUCT.md). ## Submit a Pull Request πŸš€ Branch naming convention is as following `TYPE-ISSUE_ID-DESCRIPTION` example: ``` doc-548-submit-a-pull-request-section-to-contribution-guide ``` When `TYPE` can be: - **feat** - is a new feature - **doc** - documentation only changes - **cicd** - changes related to CI/CD system - **fix** - a bug fix - **refactor** - code change that neither fixes a bug nor adds a feature **All PRs must include a commit message with the changes description!** ForΒ theΒ initialΒ start, fork the project andΒ useΒ gitΒ cloneΒ commandΒ toΒ downloadΒ theΒ repositoryΒ toΒ yourΒ computer. A standard procedure for working on an issue would be to: 1. `git pull`, before creating a new branch, pull the changes from upstream. Your master needs to be up to date. ``` $ git pull ``` 2. Create new branch from `master` like: `doc-548-submit-a-pull-request-section-to-contribution-guide`
``` $ git checkout -b [name_of_your_new_branch] ``` 3. Work - commit - repeat ( be sure to be in your branch ) 4. Push changes to GitHub ``` $ git push origin [name_of_your_new_branch] ``` 5. Submit your changes for review If you go to your repository on GitHub, you'll see a `Compare & pull request` button. Click on that button. 6. Start a Pull Request Now submit the pull request and click on `Create pull request`. 7. Get a code review approval/reject 8. After approval, merge your PR 9. GitHub will automatically delete the branch after the merge is done. (they can still be restored). ## Setup From Source To set up a working **development environment**, just fork the project git repository and install the backend and frontend dependencies using the proper package manager and create run the docker-compose stack. > If you just want to install Appwrite for day-to-day usage and not as a code maintainer use this [installation guide](https://github.com/appwrite/appwrite#installation). Please note that these instructions are for setting a functional dev environment. If you want to set up an Appwrite instance to integrate into your app, you should probably try and install Appwrite by using the instructions in the [getting started guide](https://appwrite.io/docs/getting-started-for-web) or in the main [README](README.md) file. ```bash git clone git@github.com:[YOUR_FORK_HERE]/appwrite.git cd appwrite docker-compose up -d ``` ### Code Autocompletion To get proper autocompletion for all the different functions and classes in the codebase, you'll need to install Appwrite dependencies on your local machine. You can easily do that with PHP's package manager, [Composer](https://getcomposer.org/). If you don't have Composer installed, you can use the Docker Hub image to get the same result: ```bash docker run --rm --interactive --tty \ --volume $PWD:/app \ composer update --ignore-platform-reqs --optimize-autoloader --no-plugins --no-scripts --prefer-dist ``` ### User Interface Appwrite uses an internal micro-framework called Litespeed.js to build simple UI components in vanilla JS and [less](http://lesscss.org/) for compiling CSS code. To apply any of your changes to the UI, use the `gulp build` or `gulp less` commands, and restart the Appwrite main container to load the new static files to memory using `docker-compose restart appwrite`. ### Get Started After finishing the installation process, you can start writing and editing code. #### Advanced Topics We love to create issues that are good for beginners and label them as `good first issue` or `hacktoberfest`, but some more advanced topics might require extra knowledge. Below is a list of links you can use to learn more about some of the more advance topics that will help you master the Appwrite codebase. ##### Tools and Libs - [Docker](https://www.docker.com/get-started) - [PHP FIG](https://www.php-fig.org/) - [PSR-1](https://www.php-fig.org/psr/psr-1/) and [PSR-4](https://www.php-fig.org/psr/psr-4/) - [PHP Swoole](https://www.swoole.co.uk/) Learn more at our [Technology Stack](## Technology Stack) section. ##### Network and Protocols - [OSI Model](https://en.wikipedia.org/wiki/OSI_model) - [TCP vs UDP](https://www.guru99.com/tcp-vs-udp-understanding-the-difference.html#:~:text=TCP%20is%20a%20connection%2Doriented,speed%20of%20UDP%20is%20faster&text=TCP%20does%20error%20checking%20and,but%20it%20discards%20erroneous%20packets.) - [HTTP](https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol) - [REST API](https://en.wikipedia.org/wiki/Representational_state_transfer) - [GraphQL](https://en.wikipedia.org/wiki/GraphQL) - [gRPC](https://en.wikipedia.org/wiki/GRPC) ##### Architecture - [Microservices vs Monolithic](https://www.mulesoft.com/resources/api/microservices-vs-monolithic#:~:text=Microservices%20architecture%20vs%20monolithic%20architecture&text=A%20monolithic%20application%20is%20built%20as%20a%20single%20unit.&text=To%20make%20any%20alterations%20to,formally%20with%20business%2Doriented%20APIs.) - [MVVM](https://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93viewmodel) - Appwrite console architecture ##### Security - [Appwrite Auth and ACL](https://github.com/appwrite/appwrite/blob/0.7.x/docs/specs/authentication.drawio.svg) - [OAuth](https://en.wikipedia.org/wiki/OAuth) - [Encryption](https://medium.com/searchencrypt/what-is-encryption-how-does-it-work-e8f20e340537#:~:text=Encryption%20is%20a%20process%20that,%2C%20or%20decrypt%2C%20the%20information.) - [Hashing](https://searchsqlserver.techtarget.com/definition/hashing#:~:text=Hashing%20is%20the%20transformation%20of,it%20using%20the%20original%20value.) ## Architecture Appwrite's current structure is a combination of both [Monolithic](https://en.wikipedia.org/wiki/Monolithic_application) and [Microservice](https://en.wikipedia.org/wiki/Microservices) architectures, but our final goal, as we grow, is to be using only microservices. ### File Structure ```bash . β”œβ”€β”€ app # Main application β”‚ β”œβ”€β”€ config # Config files β”‚ β”œβ”€β”€ controllers # API & dashboard controllers β”‚ β”‚ β”œβ”€β”€ api β”‚ β”‚ β”œβ”€β”€ shared β”‚ β”‚ └── web β”‚ β”œβ”€β”€ db # DB schemas β”‚ β”œβ”€β”€ sdks # SDKs generated copies (used for generating code examples) β”‚ β”œβ”€β”€ tasks # Server CLI commands β”‚ β”œβ”€β”€ views # HTML server-side templates β”‚ └── workers # Background workers β”œβ”€β”€ bin # Server executables (tasks & workers) β”œβ”€β”€ docker # Docker related resources and configs β”œβ”€β”€ docs # Docs and tutorials β”‚ β”œβ”€β”€ examples β”‚ β”œβ”€β”€ references β”‚ β”œβ”€β”€ services β”‚ β”œβ”€β”€ specs β”‚ └── tutorials β”œβ”€β”€ public # Public files β”‚ β”œβ”€β”€ dist β”‚ β”œβ”€β”€ fonts β”‚ β”œβ”€β”€ images β”‚ β”œβ”€β”€ scripts β”‚ └── styles β”œβ”€β”€ src # Supporting libraries (each lib has one role, common libs are released as individual projects) β”‚ └── Appwrite β”‚ β”œβ”€β”€ Auth β”‚ β”œβ”€β”€ Database β”‚ β”œβ”€β”€ Detector β”‚ β”œβ”€β”€ Docker β”‚ β”œβ”€β”€ Event β”‚ β”œβ”€β”€ Extend β”‚ β”œβ”€β”€ Migration β”‚ β”œβ”€β”€ Network β”‚ β”œβ”€β”€ OpenSSL β”‚ β”œβ”€β”€ Specification β”‚ β”œβ”€β”€ Task β”‚ β”œβ”€β”€ Template β”‚ β”œβ”€β”€ URL β”‚ └── Utopia └── tests # End to end & unit tests β”œβ”€β”€ e2e β”œβ”€β”€ resources └── unit ``` --- ![Appwrite](docs/specs/overview.drawio.svg) --- ### The Monolithic Part Appwrite's main API container is designed as a monolithic app. This is a decision we made to allow us to develop the project faster while still being a very small team. Although the Appwrite API is a monolithic app, it has a very clear separation of concern as each internal service or worker is separated by its container, which will allow us as we grow to start breaking services for better maintenance and scalability. ### The Microservice Part Each container in Appwrite is a microservice on its own. Each service is an independent process that can scale without regard to any of the other services. Currently, all of the Appwrite microservices are intended to communicate using the TCP protocol over a private network. You should be aware to not expose any of the services to the public-facing network, besides the public port 80 and 443, who, by default, are used to expose the Appwrite HTTP API. ## Ports Appwrite dev version uses ports 80 and 443 as an entry point to the Appwrite API and console. We also expose multiple ports in the range of 9500-9504 for debugging some of the Appwrite containers on dev mode. If you have any conflicts with the ports running on your system, you can easily replace them by editing Appwrite's docker-compose.yml file and executing `docker-compose up -d` command. ## Technology Stack To start helping us to improve the Appwrite server by submitting code, prior knowledge of Appwrite's technology stack can help you with getting started. Appwrite stack is combined from a variety of open-source technologies and tools. Appwrite backend API is written primarily with PHP version 7 and above on top of the [Utopia PHP framework](https://github.com/utopia-php/framework). The Appwrite frontend is built with tools like gulp, less, and [litespeed.js](https://github.com/litespeed-js). We use Docker as the container technology to package the Appwrite server for easy integration on-cloud, on-premise, or on-localhosts. ### Other Technologies * Redis - for managing cache and in-memory data (currently, we do not use Redis for persistent data) * MariaDB - for database storage and queries * InfluxDB - for managing stats and time-series based data * Statsd - for sending data over UDP protocol (using Telegraf) * ClamAV - for validating and scanning storage files * Imagemagick - for manipulating and managing image media files. * Webp - for better compression of images on supporting clients * SMTP - for sending email messages and alerts * Resque - for managing data queues and scheduled tasks over a Redis server ## Package Managers Appwrite uses a package manager for managing code dependencies for both backend and frontend development. We try our best to avoid creating any unnecessary, and any new dependency to the project is subjected to a lead developer review and approval. Many of Appwrite's internal modules are also used as dependencies to allow other Appwrite's projects to reuse them and as a way to contribute them back to the community. Appwrite uses [PHP's Composer](https://getcomposer.org/) for managing dependencies on the server-side and [JS NPM](https://www.npmjs.com/) for managing dependencies on the frontend side. ## Coding Standards Appwrite is following the [PHP-FIG standards](https://www.php-fig.org/). Currently, we are using both PSR-0 and PSR-4 for coding standards and autoloading standards. Soon we will also review the project for support with PSR-12 (Extended Coding Style). We use prettier for our JS coding standards and auto-formatting our code. ## Scalability, Speed, and Performance Appwrite is built to scale. Please keep in mind that the Appwrite stack can run in different environments and different scales. We wish Appwrite will be as easy to set up and in a single, localhost, and easy to grow to a large environment with dozens and even hundreds of instances. When contributing code, please take into account the following considerations: * Response Time * Throughput * Requests per Seconds * Network Usage * Memory Usage * Browser Rendering * Background Jobs * Task Execution Time ## Security & Privacy Security and privacy are extremely important to Appwrite, developers, and users alike. Make sure to follow the best industry standards and practices. ## Dependencies Please avoid introducing new dependencies to Appwrite without consulting the team. New dependencies can be very helpful but also introduce new security and privacy issues, complexity, and impact total docker image size. Adding a new dependency should have vital value on the product with minimum possible risk. ## Introducing New Features We would πŸ’– you to contribute to Appwrite, but we would also like to make sure Appwrite is as great as possible and loyal to its vision and mission statement πŸ™. For us to find the right balance, please open an issue explaining your ideas before introducing a new pull request. This will allow the Appwrite community to have sufficient discussion about the new feature value and how it fits in the product roadmap and vision. This is also important for the Appwrite lead developers to be able to give technical input and different emphasis regarding the feature design and architecture. Some bigger features might need to go through our [RFC process](https://github.com/appwrite/rfc). ## Build To build a new version of the Appwrite server, all you need to do is run the build.sh file like this: ```bash bash ./build.sh X.X.X ``` Before running the command, make sure you have proper write permissions to the Appwrite docker hub team. **Build for Multicore** ```bash docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v6,linux/arm/v7,linux/arm64/v8,linux/ppc64le,linux/s390x -t appwrite/appwrite:dev --push . ``` **Build Functions Envs** Build envs for all supported cloud functions (multicore builds) ```bash bash ./docker/environments/build.sh ``` ## Tests To run all tests manually, use the Appwrite Docker CLI from your terminal: ```bash docker-compose exec appwrite test ``` To run unit tests use: ```bash docker-compose exec appwrite test /usr/src/code/tests/unit ``` To run end-2-end tests use: ```bash docker-compose exec appwrite test /usr/src/code/tests/e2e ``` To run end-2-end tests for a spcific service use: ```bash docker-compose exec appwrite test /usr/src/code/tests/e2e/Services/[ServiceName] ``` ## Benchmarking You can use WRK Docker image to benchmark the server performance. Benchmarking is extremely useful when you want to compare how the server behaves before and after a change has been applied. Replace [APPWRITE_HOSTNAME_OR_IP] with your Appwrite server hostname or IP. Note that localhost is not accessible from inside the WRK container. ``` Options: -c, --connections Connections to keep open -d, --duration Duration of test -t, --threads Number of threads to use -s, --script Load Lua script file -H, --header Add header to request --latency Print latency statistics --timeout Socket/request timeout -v, --version Print version details ``` ```bash docker run --rm skandyla/wrk -t3 -c100 -d30 https://[APPWRITE_HOSTNAME_OR_IP] ``` ## Code Maintenance We use some automation tools to help us keep a healthy codebase. Improve PHP execution time by using [fully-qualified function calls](https://veewee.github.io/blog/optimizing-php-performance-by-fq-function-calls/): ```bash php-cs-fixer fix src/ --rules=native_function_invocation --allow-risky=yes ``` Coding Standards: ```bash php-cs-fixer fix app/controllers --rules='{"braces": {"allow_single_line_closure": true}}' ``` ```bash php-cs-fixer fix src --rules='{"braces": {"allow_single_line_closure": true}}' ``` Static Code Analysis: ```bash docker-compose exec appwrite /usr/src/code/vendor/bin/psalm ``` ## Tutorials From time to time, our team will add tutorials that will help contributors find their way in the Appwrite source code. Below is a list of currently available tutorials: * [Adding Support for a New OAuth2 Provider](./docs/tutorials/add-oauth2-provider.md) * [Appwrite Environment Variables](./docs/tutorials/environment-variables.md) * [Running in Production](./docs/tutorials/running-in-production.md) * [Adding Storage Adapter](./docs/tutorials/add-storage-adapter.md) ## Other Ways to Help Pull requests are great, but there are many other areas where you can help Appwrite. ### Blogging & Speaking Blogging, speaking about, or creating tutorials about one of Appwrite’s many features. Mention [@appwrite_io](https://twitter.com/appwrite_io) on Twitter and/or email team [at] appwrite [dot] io so we can give pointers and tips and help you spread the word by promoting your content on the different Appwrite communication channels. Please add your blog posts and videos of talks to our [Awesome Appwrite](https://github.com/appwrite/awesome-appwrite) repo on GitHub. ### Presenting at Meetups Presenting at meetups and conferences about your Appwrite projects. Your unique challenges and successes in building things with Appwrite can provide great speaking material. We’d love to review your talk abstract/CFP, so get in touch with us if you’d like some help! ### Sending Feedbacks & Reporting Bugs Sending feedback is a great way for us to understand your different use cases of Appwrite better. If you had any issues, bugs, or want to share about your experience, feel free to do so on our GitHub issues page or at our [Discord channel](https://discord.gg/GSeTUeA). ### Submitting New Ideas If you think Appwrite could use a new feature, please open an issue on our GitHub repository, stating as much information as you can think about your new idea and it's implications. We would also use this issue to gather more information, get more feedback from the community, and have a proper discussion about the new feature. ### Improving Documentation Submitting documentation updates, enhancements, designs, or bug fixes. Spelling or grammar fixes will be very much appreciated. ### Helping Someone Searching for Appwrite on Discord, GitHub, or StackOverflow and helping someone else who needs help. You can also help by teaching others how to contribute to Appwrite's repo!