settings.py 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. """
  2. Django settings for hackathon_starter project.
  3. For more information on this file, see
  4. https://docs.djangoproject.com/en/1.7/topics/settings/
  5. For the full list of settings and their values, see
  6. https://docs.djangoproject.com/en/1.7/ref/settings/
  7. """
  8. # Build paths inside the project like this: os.path.join(BASE_DIR, ...)
  9. import os
  10. BASE_DIR = os.path.dirname(os.path.dirname(__file__))
  11. # Quick-start development settings - unsuitable for production
  12. # See https://docs.djangoproject.com/en/1.7/howto/deployment/checklist/
  13. # SECURITY WARNING: keep the secret key used in production secret!
  14. SECRET_KEY = 'keuhh=0*%do-ayvy*m2k=vss*$7)j8q!@u0+d^na7mi2(^!l!d'
  15. # SECURITY WARNING: don't run with debug turned on in production!
  16. DEBUG = True
  17. TEMPLATE_DEBUG = True
  18. ALLOWED_HOSTS = []
  19. # Application definition
  20. INSTALLED_APPS = (
  21. 'django.contrib.admin',
  22. 'django.contrib.auth',
  23. 'django.contrib.contenttypes',
  24. 'django.contrib.sessions',
  25. 'django.contrib.messages',
  26. 'django.contrib.staticfiles',
  27. 'hackathon',
  28. 'bootstrapform',
  29. # 'django_openid',
  30. 'django_nose',
  31. )
  32. MIDDLEWARE_CLASSES = (
  33. 'django.contrib.sessions.middleware.SessionMiddleware',
  34. 'django.middleware.common.CommonMiddleware',
  35. 'django.middleware.csrf.CsrfViewMiddleware',
  36. 'django.contrib.auth.middleware.AuthenticationMiddleware',
  37. 'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
  38. 'django.contrib.messages.middleware.MessageMiddleware',
  39. 'django.middleware.clickjacking.XFrameOptionsMiddleware',
  40. #'django_openid_consumer.SessionConsumer',
  41. )
  42. ROOT_URLCONF = 'hackathon_starter.urls'
  43. WSGI_APPLICATION = 'hackathon_starter.wsgi.application'
  44. # Database
  45. # https://docs.djangoproject.com/en/1.7/ref/settings/#databases
  46. DATABASES = {
  47. 'default': {
  48. 'ENGINE': 'django.db.backends.sqlite3',
  49. 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
  50. }
  51. }
  52. # Internationalization
  53. # https://docs.djangoproject.com/en/1.7/topics/i18n/
  54. LANGUAGE_CODE = 'en-us'
  55. TIME_ZONE = 'UTC'
  56. USE_I18N = True
  57. USE_L10N = True
  58. USE_TZ = True
  59. # Static files (CSS, JavaScript, Images)
  60. # https://docs.djangoproject.com/en/1.7/howto/static-files/
  61. STATIC_URL = '/static/'
  62. TEMPLATE_DIRS = [os.path.join(BASE_DIR, 'templates')]
  63. # Use nose to run all tests
  64. TEST_RUNNER = 'django_nose.NoseTestSuiteRunner'
  65. # Tell nose to measure coverage on the 'foo' and 'bar' apps
  66. NOSE_ARGS = [
  67. '--with-coverage',
  68. '--cover-package=hackathon/scripts',
  69. ]
  70. ############
  71. # KEYS #
  72. ############
  73. GITHUB_CLIENT_ID = 'client_id=2404a1e21aebd902f6db'
  74. GITHUB_CLIENT_SECRET = 'client_secret=3da44769d4b7c9465fa4c812669148a163607c23'
  75. TUMBLR_CONSUMER_KEY = 'KrSbAc9cYLmIgVAn1D21FjRR97QWsutNMxkPDFBxo8CMWtMk4M'
  76. TUMBLR_CONSUMER_SECRET ='lKWMtL2Lj8zr5pY51PVqT8ugeoG0DjrdgoFewM0QTSyJ12jP8d'