blob: a096999ede94b7d6d8689decf57d30aaf19c95bf [file] [log] [blame]
Dirk Vogtf130c752016-08-23 14:45:01 +02001"""
2Django settings for hiccup_server project.
3
4Generated by 'django-admin startproject' using Django 1.9.7.
5
6For more information on this file, see
7https://docs.djangoproject.com/en/1.9/topics/settings/
8
9For the full list of settings and their values, see
10https://docs.djangoproject.com/en/1.9/ref/settings/
11"""
12
13import os
14
15# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
16BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
17
18
19# Quick-start development settings - unsuitable for production
20# See https://docs.djangoproject.com/en/1.9/howto/deployment/checklist/
21
22# SECURITY WARNING: keep the secret key used in production secret!
23SECRET_KEY = '7u+#ha3hk!x+*)clhs46%n*)w1q+5s4+yoc#1!nm0b%fwwrud@'
24
25# SECURITY WARNING: don't run with debug turned on in production!
Dirk Vogtf2a33422016-10-11 17:17:26 +020026DEBUG = True
Dirk Vogtf130c752016-08-23 14:45:01 +020027
Dirk Vogt20539e52016-08-26 11:17:35 +020028ALLOWED_HOSTS = ['*']
Dirk Vogtf130c752016-08-23 14:45:01 +020029
30
31# Application definition
32
33INSTALLED_APPS = [
34 'django.contrib.admin',
35 'django.contrib.auth',
36 'django.contrib.contenttypes',
37 'django.contrib.sessions',
38 'django.contrib.messages',
39 'django.contrib.staticfiles',
Dirk Vogt47d80ba2016-08-26 09:31:39 +020040 'rest_framework',
Dirk Vogtf2a33422016-10-11 17:17:26 +020041 'rest_framework.authtoken',
Dirk Vogtf130c752016-08-23 14:45:01 +020042 'crashreports',
Dirk Vogtf2a33422016-10-11 17:17:26 +020043 'taggit',
Dirk Vogtd1345212016-09-14 14:31:45 +020044 'crispy_forms',
Dirk Vogtf5a15532016-09-26 15:52:24 +020045 'bootstrap3',
Dirk Vogtf2a33422016-10-11 17:17:26 +020046 'django_extensions',
Dirk Vogtf130c752016-08-23 14:45:01 +020047]
48
49MIDDLEWARE_CLASSES = [
50 'django.middleware.security.SecurityMiddleware',
51 'django.contrib.sessions.middleware.SessionMiddleware',
52 'django.middleware.common.CommonMiddleware',
53 'django.middleware.csrf.CsrfViewMiddleware',
54 'django.contrib.auth.middleware.AuthenticationMiddleware',
55 'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
56 'django.contrib.messages.middleware.MessageMiddleware',
57 'django.middleware.clickjacking.XFrameOptionsMiddleware',
58]
59
60ROOT_URLCONF = 'hiccup.urls'
61
62TEMPLATES = [
63 {
64 'BACKEND': 'django.template.backends.django.DjangoTemplates',
65 'DIRS': [],
66 'APP_DIRS': True,
67 'OPTIONS': {
68 'context_processors': [
69 'django.template.context_processors.debug',
70 'django.template.context_processors.request',
71 'django.contrib.auth.context_processors.auth',
72 'django.contrib.messages.context_processors.messages',
73 ],
74 },
75 },
76]
77
78#WSGI_APPLICATION = 'hiccup_server.wsgi.application'
79
80
81# Database
82# https://docs.djangoproject.com/en/1.9/ref/settings/#databases
83
84DATABASES = {
85 'default': {
86 'ENGINE': 'django.db.backends.sqlite3',
87 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
88 }
89}
90
91
92# Password validation
93# https://docs.djangoproject.com/en/1.9/ref/settings/#auth-password-validators
94
95AUTH_PASSWORD_VALIDATORS = [
96 {
97 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
98 },
99 {
100 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
101 },
102 {
103 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
104 },
105 {
106 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
107 },
108]
109
110
111# Internationalization
112# https://docs.djangoproject.com/en/1.9/topics/i18n/
113
114LANGUAGE_CODE = 'en-us'
115TIME_ZONE = 'Europe/Amsterdam'
116USE_I18N = True
117USE_L10N = True
118USE_TZ = True
119
Dirk Vogt47d80ba2016-08-26 09:31:39 +0200120REST_FRAMEWORK = {
Dirk Vogtf2a33422016-10-11 17:17:26 +0200121 'DEFAULT_AUTHENTICATION_CLASSES': (
122 'rest_framework.authentication.BasicAuthentication',
123 'rest_framework.authentication.SessionAuthentication',
124 'rest_framework.authentication.TokenAuthentication',
125 ),
Dirk Vogt47d80ba2016-08-26 09:31:39 +0200126 'DEFAULT_PERMISSION_CLASSES': (
127 'rest_framework.permissions.IsAuthenticated',
Dirk Vogtd1345212016-09-14 14:31:45 +0200128 ),
129 'DEFAULT_FILTER_BACKENDS': ('rest_framework.filters.DjangoFilterBackend',)
Dirk Vogt47d80ba2016-08-26 09:31:39 +0200130}
131
Dirk Vogtf130c752016-08-23 14:45:01 +0200132# Static files (CSS, JavaScript, Images)
133# https://docs.djangoproject.com/en/1.9/howto/static-files/
134
135STATIC_URL = '/static/'
Dirk Vogt20539e52016-08-26 11:17:35 +0200136
137STATIC_ROOT = "/home/hiccup/static/static"
Dirk Vogtd8b956b2016-11-22 15:03:21 +0100138
139try:
140 from local_settings import *
141except ImportError as e:
142 pass