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:shgit clone https://github.com/gnmyt/Nexterm.git
- Install the dependencies for the server:shyarn install
- Install the dependencies for the client:shcd client yarn install
🏃 Running the development server 
Starting the development server is as simple as running the following command:
sh
yarn devThis 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:shgit checkout -b feature/my-new-feature
- Make your changes: Implement your feature, fix, or improvement.
- Commit your changes:shgit commit -m "Add feature: my new feature"
- Push to your fork:shgit 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.
