| 1 | # -*- coding: utf-8 -*- |
|---|
| 2 | # Django settings for sandbox project. |
|---|
| 3 | |
|---|
| 4 | import os |
|---|
| 5 | |
|---|
| 6 | DEBUG = True |
|---|
| 7 | TEMPLATE_DEBUG = DEBUG |
|---|
| 8 | |
|---|
| 9 | ADMINS = ( |
|---|
| 10 | ('Guillaume Pellerin', 'yomguy@parisson.com'), |
|---|
| 11 | ) |
|---|
| 12 | |
|---|
| 13 | MANAGERS = ADMINS |
|---|
| 14 | |
|---|
| 15 | DATABASES = { |
|---|
| 16 | 'default': { |
|---|
| 17 | 'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. |
|---|
| 18 | 'NAME': 'sandbox.sql', # Or path to database file if using sqlite3. |
|---|
| 19 | 'USER': '', # Not used with sqlite3. |
|---|
| 20 | 'PASSWORD': '', # Not used with sqlite3. |
|---|
| 21 | 'HOST': '', # Set to empty string for localhost. Not used with sqlite3. |
|---|
| 22 | 'PORT': '', # Set to empty string for default. Not used with sqlite3. |
|---|
| 23 | } |
|---|
| 24 | } |
|---|
| 25 | |
|---|
| 26 | # Local time zone for this installation. Choices can be found here: |
|---|
| 27 | # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name |
|---|
| 28 | # although not all choices may be available on all operating systems. |
|---|
| 29 | # On Unix systems, a value of None will cause Django to use the same |
|---|
| 30 | # timezone as the operating system. |
|---|
| 31 | # If running in a Windows environment this must be set to the same as your |
|---|
| 32 | # system time zone. |
|---|
| 33 | TIME_ZONE = 'Europe/Paris' |
|---|
| 34 | |
|---|
| 35 | # Language code for this installation. All choices can be found here: |
|---|
| 36 | # http://www.i18nguy.com/unicode/language-identifiers.html |
|---|
| 37 | #LANGUAGE_CODE = 'fr_FR' |
|---|
| 38 | LANGUAGES = [ ('fr', 'French'), |
|---|
| 39 | ('en', 'English'), |
|---|
| 40 | ] |
|---|
| 41 | |
|---|
| 42 | SITE_ID = 1 |
|---|
| 43 | |
|---|
| 44 | # If you set this to False, Django will make some optimizations so as not |
|---|
| 45 | # to load the internationalization machinery. |
|---|
| 46 | USE_I18N = True |
|---|
| 47 | |
|---|
| 48 | # If you set this to False, Django will not format dates, numbers and |
|---|
| 49 | # calendars according to the current locale |
|---|
| 50 | USE_L10N = True |
|---|
| 51 | |
|---|
| 52 | # Absolute path to the directory that holds media. |
|---|
| 53 | # Example: "/home/media/media.lawrence.com/" |
|---|
| 54 | MEDIA_ROOT = os.path.join(os.path.dirname(__file__), 'media/') |
|---|
| 55 | |
|---|
| 56 | if not os.path.exists(MEDIA_ROOT): |
|---|
| 57 | os.mkdir(MEDIA_ROOT) |
|---|
| 58 | |
|---|
| 59 | # URL that handles the media served from MEDIA_ROOT. Make sure to use a |
|---|
| 60 | # trailing slash if there is a path component (optional in other cases). |
|---|
| 61 | # Examples: "http://media.lawrence.com", "http://example.com/media/" |
|---|
| 62 | MEDIA_URL = '/media/' |
|---|
| 63 | |
|---|
| 64 | # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a |
|---|
| 65 | # trailing slash. |
|---|
| 66 | # Examples: "http://foo.com/media/", "/media/". |
|---|
| 67 | ADMIN_MEDIA_PREFIX = 'http://localhost/django/media/' |
|---|
| 68 | |
|---|
| 69 | # Make this unique, and don't share it with anybody. |
|---|
| 70 | SECRET_KEY = 'a8l7%06wr2k+3=%#*#@#rvop2mmzko)44%7k(zx%lls^ihm9^5' |
|---|
| 71 | |
|---|
| 72 | # List of callables that know how to import templates from various sources. |
|---|
| 73 | TEMPLATE_LOADERS = ( |
|---|
| 74 | 'django.template.loaders.filesystem.Loader', |
|---|
| 75 | 'django.template.loaders.app_directories.Loader', |
|---|
| 76 | # 'django.template.loaders.eggs.Loader', |
|---|
| 77 | ) |
|---|
| 78 | |
|---|
| 79 | |
|---|
| 80 | MIDDLEWARE_CLASSES = ( |
|---|
| 81 | 'django.middleware.common.CommonMiddleware', |
|---|
| 82 | 'django.contrib.sessions.middleware.SessionMiddleware', |
|---|
| 83 | 'django.middleware.csrf.CsrfViewMiddleware', |
|---|
| 84 | 'django.contrib.auth.middleware.AuthenticationMiddleware', |
|---|
| 85 | 'django.contrib.messages.middleware.MessageMiddleware', |
|---|
| 86 | 'django.middleware.locale.LocaleMiddleware', |
|---|
| 87 | ) |
|---|
| 88 | |
|---|
| 89 | ROOT_URLCONF = 'sandbox_sqlite.urls' |
|---|
| 90 | |
|---|
| 91 | TEMPLATE_DIRS = ( |
|---|
| 92 | # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates". |
|---|
| 93 | # Always use forward slashes, even on Windows. |
|---|
| 94 | # Don't forget to use absolute paths, not relative paths. |
|---|
| 95 | '', |
|---|
| 96 | ) |
|---|
| 97 | |
|---|
| 98 | INSTALLED_APPS = ( |
|---|
| 99 | 'django.contrib.auth', |
|---|
| 100 | 'django.contrib.contenttypes', |
|---|
| 101 | 'django.contrib.sessions', |
|---|
| 102 | 'django.contrib.sites', |
|---|
| 103 | 'django.contrib.messages', |
|---|
| 104 | 'django.contrib.admin', |
|---|
| 105 | 'telemeta', |
|---|
| 106 | 'jsonrpc', |
|---|
| 107 | 'south', |
|---|
| 108 | 'sorl.thumbnail', |
|---|
| 109 | ) |
|---|
| 110 | |
|---|
| 111 | TEMPLATE_CONTEXT_PROCESSORS = ( |
|---|
| 112 | 'django.core.context_processors.request', |
|---|
| 113 | 'django.contrib.auth.context_processors.auth', |
|---|
| 114 | ) |
|---|
| 115 | |
|---|
| 116 | TELEMETA_ORGANIZATION = 'Parisson' |
|---|
| 117 | TELEMETA_SUBJECTS = ('test', 'telemeta', 'sandbox') |
|---|
| 118 | TELEMETA_DESCRIPTION = "Telemeta TEST sandbox" |
|---|
| 119 | TELEMETA_GMAP_KEY = 'ABQIAAAArg7eSfnfTkBRma8glnGrlxRVbMrhnNNvToCbZQtWdaMbZTA_3RRGObu5PDoiBImgalVnnLU2yN4RMA' |
|---|
| 120 | TELEMETA_CACHE_DIR = MEDIA_ROOT + 'cache' |
|---|
| 121 | TELEMETA_EXPORT_CACHE_DIR = MEDIA_ROOT + 'export' |
|---|
| 122 | TELEMETA_DATA_CACHE_DIR = TELEMETA_CACHE_DIR + "/data" |
|---|
| 123 | |
|---|
| 124 | TELEMETA_DOWNLOAD_ENABLED = True |
|---|
| 125 | TELEMETA_STREAMING_FORMATS = ('mp3', 'webm') |
|---|
| 126 | TELEMETA_DOWNLOAD_FORMATS = ('wav', 'mp3', 'webm') |
|---|
| 127 | TELEMETA_PUBLIC_ACCESS_PERIOD = 51 |
|---|
| 128 | AUTH_PROFILE_MODULE = 'telemeta.userprofile' |
|---|
| 129 | SESSION_EXPIRE_AT_BROWSER_CLOSE = False |
|---|
| 130 | |
|---|
| 131 | EMAIL_HOST = 'localhost' |
|---|
| 132 | DEFAULT_FROM_EMAIL = 'webmaster@parisson.com' |
|---|