◐ Shell
clean mode source ↗

GitHub - Clacket/clacket: Movie recommendation engine and other things we're thinking through.

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

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:

Test and Lint Python

(Testing lints but linting doesn't test)