Contributing to Nexterm
You plan on contributing to Nexterm? That's great! This document will guide you through the process of contributing to the project.
📦 Prerequisites
🛠️ Installation
- Clone the repository:sh
git clone https://github.com/gnmyt/Nexterm.git
- Install the dependencies for the server:sh
yarn install
- Install the dependencies for the client:sh
cd client yarn install
🏃 Running the development server
Starting the development server is as simple as running the following command:
sh
yarn dev
This will start the server and the client in development mode. You can access the development server at http://127.0.0.1:5173.
🤝 Contributing
- Fork the repository: Click the "Fork" button at the top right of the repository page.
- Create a new branch:sh
git checkout -b feature/my-new-feature
- Make your changes: Implement your feature, fix, or improvement.
- Commit your changes:sh
git commit -m "Add feature: my new feature"
- Push to your fork:sh
git push origin feature/my-new-feature
- Open a pull request: Go to the original repository and create a PR with a clear description.
📝 Guidelines
- Follow the existing code style.
- Keep PRs focused and minimal.
- Include meaningful commit messages.
- Link related issues when applicable.