-
Notifications
You must be signed in to change notification settings - Fork 12
Contributing Code
Robert Down edited this page Apr 23, 2017
·
5 revisions
- Virtualenv
- Fork of this repo
- Local clone of your fork
- In the root directory run
virtualenv venv
to setup your virtualenvironment . venv/bin/activate
-
pip install --editable .
This creates an editable working copy of the demo data- Your virtualenv needs to have setuptools installed to do this step. You may need to run
pip install setuptools
if this step fails
- Your virtualenv needs to have setuptools installed to do this step. You may need to run
You now have a local copy of code you can hack on.
- Never work on
master
, always branch fromdevelop
- Document your function calls
- Unit testing will get your code in faster (Though no unit tests actually exist yet)