Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pip freeze #205

Merged
merged 2 commits into from
Nov 30, 2014
Merged

Pip freeze #205

merged 2 commits into from
Nov 30, 2014

Commits on Nov 30, 2014

  1. Add explanation of pip freeze and shell redirection.

    Lots of our students got the impression that "pip freeze > filename" was
    the standard way of creating a file from the shell, which caused some
    really confusing problems later on!
    Miles Gould committed Nov 30, 2014
    Configuration menu
    Copy the full SHA
    5613397 View commit details
    Browse the repository at this point in the history
  2. Make creation of "runtime.txt" more explicit.

    We had a surprising number of students who created runtime.txt with the
    `pip freeze > runtime.txt` method, and then added a Python version at
    the end. This caused endless confusion when Heroku told them that
    (Django==1.7.1
    dj-database-url==0.3.0
    waitress==0.8.9
    whitenoise==1.0.5
    psycopg2==2.5.3
    python-3.4.2) was not a runtime supported by the cedar-14 stack - at one
    point we had five coaches standing around one poor student trying to
    work out what had gone wrong!
    
    I've tried to make it clearer that
    
     - you create runtime.txt using your editor
     - only the python version should be included in the file
    
    I've also removed the word "simply" from these instructions in line with
    the Coaching Guide.
    Miles Gould committed Nov 30, 2014
    Configuration menu
    Copy the full SHA
    e2c7ee8 View commit details
    Browse the repository at this point in the history