1.3 KiB
1.3 KiB
Contributing
Prerequisites
Installation
- Clone the repository:
git clone https://github.com/LukeGus/Termix - Install the dependencies for the server:
npm install
Running the development server
Run the following command:
npm run dev
This will start the Vite server. You can access Termix by going to http://localhost:5174/.
Contributing
- Fork the repository: Click the "Fork" button at the top right of the repository page.
- Create a new branch:
git checkout -b feature/my-new-feature - Make your changes: Implement your feature, fix, or improvement.
- Commit your changes:
git commit -m "Add feature: my new feature" - Push to your fork:
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. Use Tailwind CSS with shadcn components.
- Include meaningful commit messages.
- Link related issues when applicable.