forked from twentyhq/twenty
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update README and Documentation (twentyhq#1875)
* Added Overview page * Revised Getting Started page * Minor revision * Edited readme, minor modifications to docs * Removed sweep.yaml, .devcontainer, .ergomake * Moved security.md to .github, added contributing.md * changes as per code review
- Loading branch information
1 parent
da68654
commit 7b6ee4e
Showing
22 changed files
with
14,482 additions
and
475 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,72 @@ | ||
# Contributing to Twenty | ||
|
||
Thank you for considering contributing to Twenty! We welcome contributions from the community to help us build and improve our open-source CRM platform. This guide outlines the process for contributing to our project. | ||
|
||
<br> | ||
|
||
## Getting Started | ||
|
||
Before you start contributing, please take a moment to review the following resources: | ||
|
||
- [Twenty Repository](https://github.com/twentyhq/twenty): The main repository where development takes place. | ||
- [Documentation](https://docs.twenty.com): Our project documentation to understand the project structure and guidelines. | ||
|
||
<br> | ||
|
||
## Contributing Guidelines | ||
|
||
1. **Fork the Repository:** Click on the 'Fork' button in the upper right corner of the repository's GitHub page. This will create a copy of the repository in your GitHub account. | ||
|
||
2. **Clone the Repository:** Clone your forked repository to your local machine using `git clone`. | ||
|
||
```shell | ||
git clone https://github.com/yourusername/twenty.git | ||
cd twenty | ||
``` | ||
|
||
3. **Create a Branch:** Create a new branch for your contribution with a descriptive name. | ||
```shell | ||
git checkout -b feature/your-feature-name | ||
``` | ||
|
||
4. **Make Changes:** Make your desired changes and ensure that your code adheres to our coding standards. | ||
|
||
5. **Test Locally:** Test your changes locally to ensure they work as expected. | ||
|
||
6. **Commit Changes:** Commit your changes with a clear and concise commit message. | ||
|
||
```shell | ||
Copy code | ||
git commit -m "Add your detailed description here" | ||
``` | ||
7. **Push Changes:** Push your changes to your forked repository. | ||
|
||
```shell | ||
git push origin feature/your-feature-name | ||
``` | ||
|
||
8. **Create a Pull Request:** Go to the original Twenty repository and create a pull request. Please provide a detailed description of your changes. | ||
|
||
9. **Code Review:** Your pull request will undergo a code review. Be prepared to make any necessary adjustments based on feedback. | ||
|
||
10. **Merge:** Once your pull request is approved, it will be merged into the main repository. | ||
|
||
<br> | ||
|
||
## Reporting Issues | ||
|
||
If you encounter any issues or have suggestions for improvements, please feel free to create an issue on our GitHub repository. When reporting issues, please provide as much detail as possible to help us understand and address the problem effectively. | ||
|
||
<br> | ||
|
||
## Code of Conduct | ||
|
||
Please note that by contributing to this project, you are expected to follow our Code of Conduct. We strive to maintain a welcoming and inclusive community for all contributors. | ||
|
||
<br> | ||
|
||
## License | ||
|
||
By contributing to Twenty, you agree that your contributions will be licensed under the [AGPL-3.0 License](https://github.com/twentyhq/twenty/blob/main/LICENSE). | ||
|
||
Thank you for considering contributing to Twenty. Your contributions help us make our CRM platform even better! |
File renamed without changes.
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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"label": "Developer guide", | ||
"position": 2 | ||
"label": "Contributor guide", | ||
"position": 3 | ||
} |
2 changes: 1 addition & 1 deletion
2
docs/docs/developer/glossary.mdx → docs/docs/developer/additional/glossary.mdx
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
sidebar_position: 1 | ||
sidebar_position: 3 | ||
sidebar_custom_props: | ||
icon: TbVocabulary | ||
--- | ||
|
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 |
---|---|---|
|
@@ -6,4 +6,4 @@ | |
"customProps": { | ||
"icon": "TbTerminal2" | ||
} | ||
} | ||
} |
Oops, something went wrong.