Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 1.55 KB

CONTRIBUTING.md

File metadata and controls

38 lines (26 loc) · 1.55 KB

Contribution Guidelines

When contributing to create-t3-app whether on GitHub or in other community spaces:

  • Be respectful, civil, and open-minded.
  • Before opening a new pull request, try searching through the issue tracker for known issues or fixes.

How to Contribute

  1. Open an issue and describe the problem.
  2. Fork this repository to your own GitHub account, then clone the repository to your machine.
  3. Follow the README to install the project.
  4. Create a new branch and implement your changes.

Note: We use commitlint to autoupdate the changelog and versioning.

  1. Open a pull request! All pull requests must be made to the main branch.

Contributor Development Setup

# Install pnpm
npm install -g pnpm

# Install dependencies
pnpm install

# Initial build
pnpm run build

# Start the package locally
pnpm start

This contribution guide is inspired by the Next.js contribution guide.