First off, thank you for considering contributing to DataMind AI! It's people like you that make DataMind AI such a great tool.
If you've noticed a bug or have a feature request, make sure to check our Issues page to see if someone else has already created a ticket. If not, go ahead and make one!
If this is something you think you can fix, then fork DataMind AI and create a branch with a descriptive name.
A good branch name would be (where issue #325 is the ticket you're working on):
git checkout -b 325-add-text-to-sql-tool- Ensure you have activated your virtual environment before installing dependencies.
- Follow PEP 8 guidelines for Python code formatting.
- Make sure to add docstrings to any new functions or classes.
- Update
requirements.txtif you introduce any new dependencies.
At this point, you should switch back to your master branch and make sure it's up to date with DataMind AI's master branch:
git remote add upstream git@github.com:YOUR_USERNAME/DataMind_AI.git
git checkout master
git pull upstream masterThen update your feature branch from your local copy of master, and push it!
git checkout 325-add-text-to-sql-tool
git rebase master
git push --set-upstream origin 325-add-text-to-sql-toolFinally, go to GitHub and make a Pull Request. 🎉