From 4f33f7ffbc3a1352d73d8714eefb1b1b268f6f7d Mon Sep 17 00:00:00 2001 From: ichuang Date: Thu, 3 Jan 2013 00:49:57 +0000 Subject: [PATCH] turn on tracking (helps with debugging) --- cms/envs/common.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/cms/envs/common.py b/cms/envs/common.py index 50f237c374..a83f61d8f9 100644 --- a/cms/envs/common.py +++ b/cms/envs/common.py @@ -172,6 +172,9 @@ LANGUAGE_CODE = 'en' # http://www.i18nguy.com/unicode/language-identi USE_I18N = True USE_L10N = True +# Tracking +TRACK_MAX_EVENT = 10000 + # Messages MESSAGE_STORAGE = 'django.contrib.messages.storage.session.SessionStorage' @@ -275,6 +278,10 @@ INSTALLED_APPS = ( 'auth', 'student', # misleading name due to sharing with lms 'course_groups', # not used in cms (yet), but tests run + + # tracking + 'track', + # For asset pipelining 'pipeline', 'staticfiles',