# See https://docs.djangoproject.com/en/dev/howto/deployment/checklist/ SECRET_KEY = '' ALLOWED_HOSTS = [ "courseflow.example.com", ] # Uncomment this to use a real database. If left commented out, a local SQLite3 # database will be used, which is not recommended for production use. # # DATABASES = { # 'default': { # 'ENGINE':'django.db.backends.postgresql_psycopg2', # 'NAME': 'courseflow', # 'USER': 'courseflow', # 'PASSWORD': '', # 'HOST': '127.0.0.1', # 'PORT': '5432', # } # } # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True TEMPLATE_DEBUG = DEBUG # Your course git repositories will be stored under this directory. # Make sure it's writable by your web user. # # The default below makes them sit side-by-side with your courseflow checkout, # which makes sense for development, but you probably want to change this # in production. # # The 'course identifiers' you enter will be directory names below this root. #GIT_ROOT = "/some/where" GIT_ROOT = ".." EMAIL_HOST = '127.0.0.1' EMAIL_HOST_USER = '' EMAIL_HOST_PASSWORD = '' EMAIL_PORT = 25 EMAIL_USE_TLS = False ROBOT_EMAIL_FROM = "Andreas Kloeckner " TIME_ZONE = "America/Chicago" # Uncomment one of these to choose the default sign-in method for students STUDENT_SIGN_IN_VIEW = "course.auth.sign_in_by_email" #STUDENT_SIGN_IN_VIEW = "course.auth.sign_in_by_sso" # not yet implemented # URL prefix from which MathJax will be included. May be None to disable MathJax. # # Should end in "/". CourseFlow will look for MathJax.js in this path. # # Note that the "//" at the beginning of this default is not a typo. # It makes this URL root work with http and https. MATHJAX_URL_ROOT = "//cdn.mathjax.org/mathjax/latest/"