watchme

To contribute to code, you should first fork the watchme repository by clicking the fork button on the top right of the page. Once forked, you will want to clone the fork of the repository to your computer:

git clone https://github.com/<username>/watchme
cd watchme/

The main python module, watchme, is in the top level folder. You should checkout a branch, push the branch to your remote, and when you are ready, open a pull request against the master branch of vsoch/watchme.

git checkout -b add/my-feature
git commit -a -m 'adding my new feature!'
git push origin add/my-feature