Thank you for your interest in contributing to codetie! This document provides guidelines and instructions to help you get started with contributing to the project.
-
Fork the Repository
Start by forking the repository to your GitHub account.
-
Clone the Repository
git clone git@github.com:instructa/codetie.git cd codetie
-
Install Dependencies & Run
# Using npm pnpm install pnpm run dev
The development server will start at
http://localhost:5173
.
-
Create a Branch
git checkout -b feat/your-feature-name
-
Make Your Changes
Implement your changes.
-
Commit Your Changes
git commit -m "feat: add your feature description"
We follow Conventional Commits for commit messages.
-
Push to Your Fork
git push origin feat/your-feature-name
-
Create a Pull Request
Go to the codetie repository and create a pull request from your fork.
- Ensure your code follows the project's coding standards
- Update documentation if necessary
- Add tests for new features
- Make sure all tests pass
- Wait for code review and address any feedback