Skip to content

Commit

Permalink
Create CONTRIBUTING.md
Browse files Browse the repository at this point in the history
  • Loading branch information
DeepakSilaych authored Nov 13, 2024
1 parent 3e9fa05 commit f4faa38
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
# Contributing to Climate Frontend

We appreciate your interest in contributing to the Climate Frontend project! Here are some guidelines to help you get started.

## How to Contribute

1. **Fork the Repository**: Click the "Fork" button on the top-right of this repository to create your own copy.

2. **Clone the Repository**:
```bash
git clone https://github.com/your-username/Climate-Frontend.git
```
3. **Create a New Branch**:

```bash
Copy code
git checkout -b feature-name
```

4. **Make Changes**: Develop your feature or fix the bug.

5. **Run Tests**: Ensure all tests pass before submitting:

```bash
Copy code
npm test
```

6. **Commit Changes**:

```bash
Copy code
git commit -m "Description of changes"
```

7. Push to Your Fork:

```bash
Copy code
git push origin feature-name
```

8. **Submit a Pull Request** : Open a pull request with a detailed description of your changes.

Code of Conduct
We expect all contributors to abide by our Code of Conduct.

Feedback
For any questions or feedback, feel free to open an issue or reach out via [email protected].

yaml
Copy code

---

### **Next Steps**

Would you like me to provide templates for issues and pull requests or a detailed guide for setting up GitHub Actions for CI/CD? Let me know!

0 comments on commit f4faa38

Please sign in to comment.