-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from appwrite/docs-guides
Readme and contribution
- Loading branch information
Showing
3 changed files
with
191 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
OPENAI_API_KEY=YOUR_OPENAI_API_KEY |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,157 @@ | ||
# Contributing | ||
|
||
We would ❤️ for you to contribute to Appwrite and help make it better! We want your experience while contributing to Appwrite to be fun, enjoyable, and educational for anyone and everyone. All contributions are welcome, including issues, and new docs, as well as updates and tweaks, blog posts, workshops, and more. | ||
|
||
## How to Start? | ||
|
||
If you are worried about or don’t know where to start, check out the next section that explains what kind of help is needed and how you can get involved. You can reach out with any questions on our [Discord](https://appwrite.io/discord) server. You can also submit an issue and a maintainer can guide you! | ||
|
||
## Development | ||
|
||
### 1. Clone the repository with git | ||
|
||
```bash | ||
git clone https://github.com/appwrite/console.git appwrite-assistant | ||
``` | ||
|
||
### 2. Install dependencies with pnpm | ||
|
||
Navigate to the Appwrite Assistant repository and install dependencies. | ||
|
||
```bash | ||
cd appwrite-assistant && pnpm install | ||
``` | ||
|
||
### 3. Setup environment variables | ||
|
||
Add a `.env` file by copying the `.env.example` file as a template in the project's root directory. | ||
|
||
Finally, start a development server: | ||
|
||
```bash | ||
npm run dev | ||
``` | ||
|
||
## Submit a Pull Request 🚀 | ||
|
||
The branch naming convention is as follows | ||
|
||
`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 a description of the changes made!** | ||
|
||
Start by forking the project and use the `git clone` command to download the repository to your computer. A standard procedure for working on an issue would be to: | ||
|
||
1. Before creating a new branch, pull the changes from upstream to make sure your default branch is up to date. | ||
|
||
``` | ||
$ git pull | ||
``` | ||
|
||
2. Create a new branch from the default branch. For example `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] | ||
``` | ||
|
||
6. 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. | ||
7. Start a Pull Request (PR) by clicking on `Create pull request`. Make sure to update the PR description following the template provided. | ||
8. Wait for a code review. | ||
9. If you need to make changes based on feedback, make sure to re-request a review from your reviewer after you've made the necessary changes. | ||
|
||
![Re-Request a Review](https://docs.github.com/assets/cb-4714/images/help/pull_requests/request-re-review.png) | ||
|
||
10. After approval, your PR will be merged. | ||
11. You can delete your branch after it has been merged. | ||
|
||
## Guidelines | ||
|
||
### Write code to be read | ||
|
||
Follow the principles of ['Keep It Simple, Stupid'](http://en.wikipedia.org/wiki/KISS_principle) (KISS); hard-to-read or obfuscated code is difficult to maintain and debug. Don't be too clever; write code to be read. | ||
|
||
### Identify technical debt | ||
|
||
Use code comment annotations (`@todo`) to mark parts of your code that require further work. This will allow the measurement and management of technical debt. | ||
|
||
Don't use `@fixme`, which defines things that are broken. Don't commit broken code in to the repo. | ||
|
||
### Dependencies | ||
|
||
Please avoid introducing new dependencies to Appwrite without consulting the team. New dependencies can be very helpful, but they also introduce new security and privacy issues, complexity, and impact total docker image size. | ||
|
||
Adding a new dependency should contribute vital value to the product with minimum possible risk. | ||
|
||
## Updating the Documentation | ||
|
||
We created a python script, located at `scrape.py`, that fetches various links in the Appwrite documentation, and saves them to JSON files in the `docs` folder. To run the script, execute the following command. | ||
|
||
```bash | ||
python3 -m pip install -r requirements.txt | ||
python3 scrape.py | ||
``` | ||
|
||
To update the documentation, you can change which files are fetched by editing the `scrape.py` file. | ||
|
||
## Introducing New Features | ||
|
||
We would 💖 you to contribute to Appwrite, but we also want to ensure Appwrite is 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 sufficiently discuss the new feature value and how it fits within the product roadmap and vision. | ||
|
||
This is also important for the Appwrite lead developers to be able to provide technical input and potentially a different emphasis regarding the feature design and architecture. Some bigger features might need to go through our [RFC process](https://github.com/appwrite/rfc). | ||
|
||
## Other Ways to Help | ||
|
||
Pull requests are great, but there are many other areas where you can help Appwrite. | ||
|
||
### Blogging & Speaking | ||
|
||
When blogging, speaking about, or creating tutorials about one of Appwrite's many features, mention [@appwrite](https://twitter.com/appwrite) on Twitter and/or email [[email protected]](mailto:[email protected]) 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 is another excellent way to get the word out about Appwrite. 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 Feedback & Reporting Bugs | ||
|
||
Sending feedback is an excellent way for us to understand different use cases for Appwrite. If you have any issues or want to share your experience, feel free to do so on our GitHub issues page or 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 its 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 help us to improve our documentation. Spelling or grammar fixes are also very much appreciated. | ||
|
||
### Helping Someone | ||
|
||
You can also help by teaching others how to contribute to Appwrite's repo! Please consider searching for Appwrite on Discord, GitHub, or StackOverflow and helping someone else who needs help. | ||
|
||
## Code of Conduct | ||
|
||
Help us keep Appwrite open and inclusive. Please read and follow our [Code of Conduct](https://github.com/appwrite/.github/blob/main/CODE_OF_CONDUCT.md). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Assistant ✨ | ||
|
||
[![Discord](https://img.shields.io/discord/564160730845151244?label=discord&style=flat-square)](https://appwrite.io/discord) | ||
[![Twitter Account](https://img.shields.io/twitter/follow/appwrite?color=00acee&label=twitter&style=flat-square)](https://twitter.com/appwrite) | ||
[![appwrite.io](https://img.shields.io/badge/appwrite-.io-f02e65?style=flat-square)](https://appwrite.io) | ||
|
||
Appwrite Assistant is an AI-powered API that helps you with Appwrite-related tasks, powered by the official Appwrite documentation. | ||
|
||
## Installation | ||
|
||
Make sure you have [pnpm](https://pnpm.io/) installed. | ||
|
||
To install, run the following command. | ||
|
||
```bash | ||
pnpm i | ||
``` | ||
|
||
## Usage | ||
|
||
To run the server, execute the `main.js` file with node, or run the `dev` command to hot-restart the server on file changes. | ||
|
||
```bash | ||
node main.js | ||
# Or | ||
pnpm run dev | ||
``` | ||
|
||
## 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](CONTRIBUTING.md). |