Skip to content

Commit c43eac6

Browse files
author
Ashish Arora
authored
Create CONTRIBUTING.md
1 parent c7a6908 commit c43eac6

1 file changed

Lines changed: 101 additions & 0 deletions

File tree

CONTRIBUTING.md

Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
# Contributing
2+
3+
We would ❤️ for you to contribute to Utopia-php and help make it better! We want contributing to Utopia-php 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.
4+
5+
## How to Start?
6+
7+
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 anyone from the [Appwrite team on Discord](https://discord.gg/GSeTUeA). You can also submit an issue, and a maintainer can guide you!
8+
9+
## Code of Conduct
10+
11+
Help us keep Utopia-php open and inclusive. Please read and follow our [Code of Conduct](/CODE_OF_CONDUCT.md).
12+
13+
## Submit a Pull Request 🚀
14+
15+
Branch naming convention is as following
16+
17+
`TYPE-ISSUE_ID-DESCRIPTION`
18+
19+
example:
20+
21+
```
22+
doc-548-submit-a-pull-request-section-to-contribution-guide
23+
```
24+
25+
When `TYPE` can be:
26+
27+
- **feat** - is a new feature
28+
- **doc** - documentation only changes
29+
- **cicd** - changes related to CI/CD system
30+
- **fix** - a bug fix
31+
- **refactor** - code change that neither fixes a bug nor adds a feature
32+
33+
**All PRs must include a commit message with the changes description!**
34+
35+
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:
36+
37+
1. `git pull`, before creating a new branch, pull the changes from upstream. Your master needs to be up to date.
38+
39+
```
40+
$ git pull
41+
```
42+
43+
2. Create new branch from `master` like: `doc-548-submit-a-pull-request-section-to-contribution-guide`<br/>
44+
45+
```
46+
$ git checkout -b [name_of_your_new_branch]
47+
```
48+
49+
3. Work - commit - repeat ( be sure to be in your branch )
50+
51+
4. Push changes to GitHub
52+
53+
```
54+
$ git push origin [name_of_your_new_branch]
55+
```
56+
57+
5. Submit your changes for review
58+
If you go to your repository on GitHub, you'll see a `Compare & pull request` button. Click on that button.
59+
6. Start a Pull Request
60+
Now submit the pull request and click on `Create pull request`.
61+
7. Get a code review approval/reject
62+
8. After approval, merge your PR
63+
9. GitHub will automatically delete the branch after the merge is done. (they can still be restored).
64+
65+
## Introducing New Features
66+
67+
We would 💖 you to contribute to Utopia-php, but we would also like to make sure Utopia-php is as great as possible and loyal to its vision and mission statement 🙏.
68+
69+
For us to find the right balance, please open an issue explaining your ideas before introducing a new pull request.
70+
71+
This will allow the Utopia-php community to have sufficient discussion about the new feature value and how it fits in the product roadmap and vision.
72+
73+
This is also important for the Utopia-php 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).
74+
75+
## Other Ways to Help
76+
77+
Pull requests are great, but there are many other areas where you can help Utopia-php.
78+
79+
### Blogging & Speaking
80+
81+
Blogging, speaking about, or creating tutorials about one of Utopia-php’s many features is great way to contribute and help our project grow.
82+
83+
### Presenting at Meetups
84+
85+
Presenting at meetups and conferences about your Utopia-php projects. Your unique challenges and successes in building things with Utopia-php 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!
86+
87+
### Sending Feedbacks & Reporting Bugs
88+
89+
Sending feedback is a great way for us to understand your different use cases of Utopia-php 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).
90+
91+
### Submitting New Ideas
92+
93+
If you think Utopia-php 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.
94+
95+
### Improving Documentation
96+
97+
Submitting documentation updates, enhancements, designs, or bug fixes. Spelling or grammar fixes will be very much appreciated.
98+
99+
### Helping Someone
100+
101+
Searching for Utopia-php, GitHub or StackOverflow and helping someone else who needs help. You can also help by teaching others how to contribute to Utopia-php's repo!

0 commit comments

Comments
 (0)