Skip to content

Commit

Permalink
Merge pull request #16 from yml-org/jira/CM-1146/contribution-guidelines
Browse files Browse the repository at this point in the history
Add CONTRIBUTING.md
  • Loading branch information
kikoso authored Feb 15, 2023
2 parents cb1ecf2 + 7fa6118 commit e3017d8
Showing 1 changed file with 131 additions and 0 deletions.
131 changes: 131 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,131 @@
# Welcome to YChat

This is a free and open SDK for Chat GPT.

There are many ways to contribute:

* 📣 Spread the project or its apps to the world
* ✍️ Writing tutorials and blog posts
* 📝 Create or update [the documentation](https://github.com/yml-org/chatgpt-sdk/wiki)
* 🐛 Submit [bug reports](https://github.com/yml-org/chatgpt-sdk/issues)
* 💡 Adding ideas and feature requests to [Discussions](https://github.com/yml-org/chatgpt-sdk/discussions)
* 👩‍🎨 Create designs or UX flows
* 🧑‍💻 Contribute code or review PRs



## 📜 Ground Rules

A community like this should be **open**, **considerate** and **respectful**.

Behaviours that reinforce these values contribute to a positive environment, and include:

* **Being open**. Members of the community are open to collaboration, whether it's on PEPs, patches, problems, or otherwise.
* **Focusing on what is best for the community**. We're respectful of the processes set forth in the community, and we work within them.
* **Acknowledging time and effort**. We're respectful of the volunteer efforts that permeate the Python community. We're thoughtful when addressing the efforts of others, keeping in mind that often times the labor was completed simply for the good of the community.
* **Being respectful of differing viewpoints and experiences**. We're receptive to constructive comments and criticism, as the experiences and skill sets of other members contribute to the whole of our efforts.
* **Showing empathy towards other community members**. We're attentive in our communications, whether in person or online, and we're tactful when approaching differing views.
* **Being considerate**. Members of the community are considerate of their peers -- other Python users.
* **Being respectful**. We're respectful of others, their positions, their skills, their commitments, and their efforts.
* **Gracefully accepting constructive criticism**. When we disagree, we are courteous in raising our issues.
* **Using welcoming and inclusive language**. We're accepting of all who wish to take part in our activities, fostering an environment where anyone can participate and everyone can make a difference.



## 🤝 Responsibilities

* **Ensure cross-platform compatibility** for every change that's accepted. Android and iOS.
* **Ensure that code** that goes into the repository **meets all requirements**
* **Create issues for any major changes** and enhancements that you wish to make. Discuss things transparently and get community feedback.
* **Don't add** any classes to the codebase **unless absolutely needed**. Err on the side of using functions.
* Be welcoming to newcomers and encourage diverse new contributors from all backgrounds.



## 🧑‍💻 Code Contribution

To contribute code to the repository, you don't need any permissions.
First start by forking the repository, clone and checkout your clone and start coding.
When you're happy with your changes, create Atomic commits on a **new feature branch** and push it to ***your*** fork.

Atomic commits will make it easier to track down regressions. Also, it enables the ability to cherry-pick or revert a change if needed.

1. Fork it (https://github.com/yml-org/chatgpt-sdk/fork)
2. Install pre-commit hooks (`git config core.hooksPath .githooks`)
3. Create a new feature branch (`git checkout -b feature/fooBar`)
4. Commit your changes (`git commit -am 'Add some fooBar'`)
5. Push to the branch (`git push origin feature/fooBar`)
6. Create a new Pull Request



## 🐛 How to report a bug

> If you find a security vulnerability, do NOT open an issue. Email [email] instead.
1. Open the [issues tab](https://github.com/yml-org/chatgpt-sdk/issues) on github
2. Click on [New issue](https://github.com/yml-org/chatgpt-sdk/issues/new/choose)
3. Choose the bug report 🐛 template and fill out all required fields



## 💡 How to suggest a feature or enhancement

Check [open issues](https://github.com/yml-org/chatgpt-sdk/issues) and [ongoing discussions](https://github.com/yml-org/chatgpt-sdk/discussions) for a list of proposed features.

If your suggestion can not be found already, see if it is already covered by our [Roadmap](https://github.com/yml-org/chatgpt-sdk#roadmap).

Otherwise, start a new [Discussion](https://github.com/yml-org/chatgpt-sdk/discussions) and see what other users and contributors think.



## 💾 Technology

The project is currently build based on the [Kotlin Multiplatform](https://kotlinlang.org/docs/multiplatform.html),
to re-use different parts on multiple platforms supporting Android, iOS and Others.

Underneath it is using these frameworks:

* [Ktor](https://github.com/ktorio/ktor) - Kotlin async web framework
* [Koin](https://insert-koin.io/) - For Dependency Injection

## 💻 Build

To build the different apps, checkout the repository and run one of the following commands on your local machine

To build and run the android app (emulator or real android device is needed)
```shell
$ ./gradlew :app-android:installDebug
```

### 🔬 Verifications

To verify checks, run the following commands on your local machine

#### General Check

Run all configured checks for the project
```shell
$ ./gradlew check
```

#### Detekt

For code analysis and enforcing code guidelines
```shell
$ ./gradlew :chat-gpt:detektMetadataMain
```

#### Ktlint

For code analysis
```shell
$ ./gradlew :chat-gpt:ktlintCheck
```

#### Kover

For unit tests and coverage
```shell
$ ./gradlew koverVerify
```

0 comments on commit e3017d8

Please sign in to comment.