blob: e5deb5ba530798a5365831ee30206e91d6e99f4f [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 Vogt20539e52016-08-26 11:17:35 +020026DEBUG = False
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 Vogtf130c752016-08-23 14:45:01 +020041 'crashreports',
Dirk Vogt47d80ba2016-08-26 09:31:39 +020042 'psensor',
Dirk Vogtd1345212016-09-14 14:31:45 +020043 'crispy_forms',
Dirk Vogtf130c752016-08-23 14:45:01 +020044]
45
46MIDDLEWARE_CLASSES = [
47 'django.middleware.security.SecurityMiddleware',
48 'django.contrib.sessions.middleware.SessionMiddleware',
49 'django.middleware.common.CommonMiddleware',
50 'django.middleware.csrf.CsrfViewMiddleware',
51 'django.contrib.auth.middleware.AuthenticationMiddleware',
52 'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
53 'django.contrib.messages.middleware.MessageMiddleware',
54 'django.middleware.clickjacking.XFrameOptionsMiddleware',
55]
56
57ROOT_URLCONF = 'hiccup.urls'
58
59TEMPLATES = [
60 {
61 'BACKEND': 'django.template.backends.django.DjangoTemplates',
62 'DIRS': [],
63 'APP_DIRS': True,
64 'OPTIONS': {
65 'context_processors': [
66 'django.template.context_processors.debug',
67 'django.template.context_processors.request',
68 'django.contrib.auth.context_processors.auth',
69 'django.contrib.messages.context_processors.messages',
70 ],
71 },
72 },
73]
74
75#WSGI_APPLICATION = 'hiccup_server.wsgi.application'
76
77
78# Database
79# https://docs.djangoproject.com/en/1.9/ref/settings/#databases
80
81DATABASES = {
82 'default': {
83 'ENGINE': 'django.db.backends.sqlite3',
84 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
85 }
86}
87
88
89# Password validation
90# https://docs.djangoproject.com/en/1.9/ref/settings/#auth-password-validators
91
92AUTH_PASSWORD_VALIDATORS = [
93 {
94 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
95 },
96 {
97 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
98 },
99 {
100 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
101 },
102 {
103 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
104 },
105]
106
107
108# Internationalization
109# https://docs.djangoproject.com/en/1.9/topics/i18n/
110
111LANGUAGE_CODE = 'en-us'
112TIME_ZONE = 'Europe/Amsterdam'
113USE_I18N = True
114USE_L10N = True
115USE_TZ = True
116
117
Dirk Vogt47d80ba2016-08-26 09:31:39 +0200118REST_FRAMEWORK = {
119 'DEFAULT_PERMISSION_CLASSES': (
120 'rest_framework.permissions.IsAuthenticated',
Dirk Vogtd1345212016-09-14 14:31:45 +0200121 ),
122 'DEFAULT_FILTER_BACKENDS': ('rest_framework.filters.DjangoFilterBackend',)
Dirk Vogt47d80ba2016-08-26 09:31:39 +0200123}
124
Dirk Vogtf130c752016-08-23 14:45:01 +0200125# Static files (CSS, JavaScript, Images)
126# https://docs.djangoproject.com/en/1.9/howto/static-files/
127
128STATIC_URL = '/static/'
Dirk Vogt20539e52016-08-26 11:17:35 +0200129
130STATIC_ROOT = "/home/hiccup/static/static"