From 2ecd366905fb2e78fecb17bf325e0c4c70016cc9 Mon Sep 17 00:00:00 2001 From: Ben Firshman Date: Thu, 22 May 2014 14:15:17 +0100 Subject: [PATCH] Add PYTHONUNBUFFERED=1 to Django tutorial --- docs/django.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/django.md b/docs/django.md index 1c961b6c5..82b557eee 100644 --- a/docs/django.md +++ b/docs/django.md @@ -11,6 +11,7 @@ Let's use Fig to set up and run a Django/PostgreSQL app. Before starting, you'll Let's set up the three files that'll get us started. First, our app is going to be running inside a Docker container which contains all of its dependencies. We can define what goes inside that Docker container using a file called `Dockerfile`. It'll contain this to start with: FROM orchardup/python:2.7 + ENV PYTHONUNBUFFERED 1 RUN apt-get update -qq && apt-get install -y python-psycopg2 RUN mkdir /code WORKDIR /code