Skip to content

Latest commit

 

History

History
41 lines (33 loc) · 820 Bytes

File metadata and controls

41 lines (33 loc) · 820 Bytes

clacket

Movie recommendation engine and other things we're thinking through. WE HAVE A NAME.

Members

Install/Run

  1. Clone the github repo

  2. Install virtualenv and activate it

    $ virtualenv -p python3 venv
    $ . venv/bin/activate
  3. Install requirements

    $ make bootstrap

Save changes to installed packages before commiting (so environment is the same with everyone)

  1. Freeze requirements

    $ pip freeze -l > requirements.txt
  2. Commit changes as you would normally with git

  3. To deactivate the virtualenv, simply:

    $ deactivate

Test and Lint Python

(Testing lints but linting doesn't test)

$ make lint
$ make test