Thanks for helping out! We're excited for your issues and pull requests!
In addition to the mentioned roadmap, we also maintain a backlog at https://github.com/tigerlab-ai/tiger/issues.
- Fork the TigerLab repository
- Clone the fork to your local machine
- Set the upstream remote to the original TigerLab repository
git clone https://github.com/tigerlab-ai/tiger.git
cd tiger
git remote add upstream https://github.com/tigerlab-ai/tiger.git
- Install
pre-commit
and set up thepre-commit
hooks for the repo:
pip install pre-commit
pre-commit install
Before making changes, ensure that you're working with the most recent version of the code:
git checkout main
git pull upstream main
Create a new branch for your changes:
git checkout -b <branch-name>
Please adhere to the following:
- Follow existing coding style and conventions.
- Write clear, readable, and maintainable code.
- Include detailed comments when necessary.
- Test your changes thoroughly before submitting your pull request.
- Stage your changes: git add .
- Commit your changes: git commit -m "Your detailed commit message"
- Push your changes to your fork: git push origin
- Navigate to the original TigerLab repository
- Click 'New pull request'
- Choose your fork and the branch containing your changes
- Give your pull request a title and detailed description
- Submit the pull request
If you're adding a new feature or fixing a bug, make sure to add or update an issue in the issue tracker. If there's not an existing issue, create a new one. This helps us keep track of what needs to be worked on.
By participating in this project, you're expected to uphold our Code of Conduct.
If you run into problems or need help, check out our discord.
Thank you for considering contributing to TigerLab! Your time and expertise is greatly appreciated by the community.