Get active student count from new analytics data API

Disabled by default.
This commit is contained in:
Clinton Blackburn
2014-06-12 14:20:17 -04:00
committed by Carlos Andrés Rocha
parent 6b50517bd4
commit 36cfe7ab9e
7 changed files with 68 additions and 0 deletions

View File

@@ -32,6 +32,16 @@ FEATURES['ENABLE_INSTRUCTOR_EMAIL'] = True # Enable email for all Studio cou
FEATURES['REQUIRE_COURSE_EMAIL_AUTH'] = False # Give all courses email (don't require django-admin perms)
########################## ANALYTICS TESTING ########################
ANALYTICS_SERVER_URL = "http://127.0.0.1:9000/"
ANALYTICS_API_KEY = ""
ANALYTICS_DATA_URL = "http://127.0.0.1:8080"
ANALYTICS_DATA_TOKEN = ""
FEATURES['ENABLE_ANALYTICS_ACTIVE_COUNT'] = True
################################ DEBUG TOOLBAR ################################
INSTALLED_APPS += ('debug_toolbar',)