Spaces:
Runtime error
Runtime error
File size: 1,788 Bytes
db020d5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | # Contributing to WikiFit
Thank you for your interest in contributing to WikiFit! This document provides guidelines and instructions for contributing to this project.
## Code of Conduct
By participating in this project, you agree to maintain a respectful and inclusive environment for everyone.
## How to Contribute
### Reporting Bugs
If you find a bug, please create an issue with the following information:
- A clear, descriptive title
- Steps to reproduce the bug
- Expected behavior
- Actual behavior
- Screenshots if applicable
- Any additional context
### Suggesting Features
We welcome feature suggestions! Please create an issue with:
- A clear, descriptive title
- Detailed description of the proposed feature
- Explanation of why this feature would be valuable
- Any implementation ideas you have
### Pull Requests
1. Fork the repository
2. Create your feature branch (`git checkout -b feature/amazing-feature`)
3. Commit your changes (`git commit -m 'Add some amazing feature'`)
4. Push to the branch (`git push origin feature/amazing-feature`)
5. Open a Pull Request
### Pull Request Guidelines
- Update the README.md with details of changes if applicable
- Update the documentation if necessary
- The PR should work properly on all supported platforms
- Follow the Python PEP 8 style guide
- Include appropriate docstrings for new functions
- Ensure any new Streamlit components are responsive
## Development Setup
1. Fork and clone the repository
2. Install dependencies: `pip install -r requirements.txt`
3. Run the app: `streamlit run app.py`
4. Make your changes in a feature branch
## License
By contributing to WikiFit, you agree that your contributions will be licensed under the same license as the project.
Thank you for helping make WikiFit better! |