| 1 | # Contributing |
| 2 | |
| 3 | Thank you for your interest in contributing to Pixelle-Video! |
| 4 | |
| 5 | --- |
| 6 | |
| 7 | ## How to Contribute |
| 8 | |
| 9 | 1. Fork the repository |
| 10 | 2. Create a feature branch (`git checkout -b feature/AmazingFeature`) |
| 11 | 3. Commit your changes (`git commit -m 'Add some AmazingFeature'`) |
| 12 | 4. Push to the branch (`git push origin feature/AmazingFeature`) |
| 13 | 5. Open a Pull Request |
| 14 | |
| 15 | --- |
| 16 | |
| 17 | ## Development Setup |
| 18 | |
| 19 | ```bash |
| 20 | # Clone your fork |
| 21 | git clone https://github.com/your-username/Pixelle-Video.git |
| 22 | cd Pixelle-Video |
| 23 | |
| 24 | # Install development dependencies |
| 25 | uv sync |
| 26 | |
| 27 | # Run tests |
| 28 | pytest |
| 29 | ``` |
| 30 | |
| 31 | --- |
| 32 | |
| 33 | ## Code Standards |
| 34 | |
| 35 | - All code and comments in English |
| 36 | - Follow PEP 8 standards |
| 37 | - Add appropriate tests |
| 38 | |
| 39 | --- |
| 40 | |
| 41 | ## Submit Issues |
| 42 | |
| 43 | Having problems or feature suggestions? Please submit at [GitHub Issues](https://github.com/AIDC-AI/Pixelle-Video/issues). |
| 44 | |
| 45 | --- |
| 46 | |
| 47 | ## Code of Conduct |
| 48 | |
| 49 | Please be friendly and respectful. We are committed to fostering an inclusive community environment. |
| 50 | |
| 51 |