Skip to content

Latest commit

 

History

History
65 lines (44 loc) · 2.06 KB

File metadata and controls

65 lines (44 loc) · 2.06 KB

Contributing to CoreHub Projects

Thank you for your interest in contributing to CoreHub! We're excited to have you join our open-source collective. This document provides guidelines and instructions for contributing to our projects.

🌟 Our Philosophy

At CoreHub, we believe in CODE. SHARE. INNOVATE. We build decentralized and collaborative technologies with the mission of empowering developers with free and transparent software.

📋 Code of Conduct

By participating in this project, you agree to abide by our Code of Conduct. We expect all contributors to:

  • Be respectful and inclusive
  • Value different viewpoints and experiences
  • Accept constructive criticism
  • Focus on what's best for the community
  • Show empathy towards other community members

🚀 How to Contribute

Reporting Bugs

If you find a bug in any of our projects, please report it by creating an issue. Before creating a bug report:

  1. Check if the bug has already been reported
  2. Use the bug report template
  3. Include detailed steps to reproduce the bug
  4. Add screenshots if applicable
  5. Describe the expected behavior and what actually happened

Suggesting Features

We welcome feature suggestions! To suggest a new feature:

  1. Check if the feature has already been suggested
  2. Use the feature request template
  3. Explain why this feature would be useful to most users
  4. Provide as much detail as possible about how it should work

Pull Requests

We actively welcome your pull requests! Here's how to submit one:

  1. Fork the repository
  2. Create a new branch (git checkout -b feature/amazing-feature)
  3. Make your changes
  4. Run tests if applicable
  5. Commit your changes (see our commit message guidelines below)
  6. Push to the branch (git push origin feature/amazing-feature)
  7. Open a Pull Request

💻 Development Setup

# Clone the repository
git clone https://github.com/CoreHub-lol/[repository-name].git

# Navigate to the project directory
cd [repository-name]

# Install dependencies
npm install # or yarn install

# Run development server
npm run dev # or yarn dev