Skip to content

Commit 851028d

Browse files
committed
feat(contribution and license):added both files
1 parent abd2e99 commit 851028d

2 files changed

Lines changed: 56 additions & 0 deletions

File tree

CONTRIBUTING.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Contributing to [Project Name]
2+
3+
Thank you for considering contributing to [Project Name]! Here are some guidelines to help you get started.
4+
5+
## How to Contribute
6+
7+
- **Fork** the repository and clone it to your local machine.
8+
- Create a **branch** from `dev` (the development branch) for your work.
9+
```bash
10+
git checkout -b feature/your-feature-name dev
11+
```
12+
- Make your changes and **commit** them with a descriptive message.
13+
```bash
14+
git commit -m "Describe your change"
15+
```
16+
- **Push** your changes to your forked repository.
17+
```bash
18+
git push origin feature/your-feature-name
19+
```
20+
- **Submit** a pull request to the `dev` branch.
21+
22+
## Guidelines
23+
24+
- Ensure your code is **well-documented**.
25+
- **Test** your changes before submitting a pull request.
26+
- Please provide a **clear description** of what the pull request does.
27+
- Respect the **code style** of the project.
28+
29+
## License
30+
31+
By contributing to this project, you agree that your contributions will be licensed under the **MIT License**.
32+
33+
## Code of Conduct
34+
35+
Please adhere to the project's [Code of Conduct](CODE_OF_CONDUCT.md) when participating in this community.

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) [2025] [Code Compass]
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)