aboutsummaryrefslogtreecommitdiff
path: root/chishop/conf/default.py
diff options
context:
space:
mode:
Diffstat (limited to 'chishop/conf/default.py')
-rw-r--r--chishop/conf/default.py111
1 files changed, 111 insertions, 0 deletions
diff --git a/chishop/conf/default.py b/chishop/conf/default.py
new file mode 100644
index 0000000..97002b6
--- /dev/null
+++ b/chishop/conf/default.py
@@ -0,0 +1,111 @@
1# Django settings for djangopypi project.
2import os
3
4ADMINS = (
5 # ('Your Name', 'your_email@domain.com'),
6)
7
8# Allow uploading a new distribution file for a project version
9# if a file of that type already exists.
10#
11# The default on PyPI is to not allow this, but it can be real handy
12# if you're sloppy.
13DJANGOPYPI_ALLOW_VERSION_OVERWRITE = False
14DJANGOPYPI_RELEASE_UPLOAD_TO = 'dists'
15
16# change to False if you do not want Django's default server to serve static pages
17LOCAL_DEVELOPMENT = True
18
19REGISTRATION_OPEN = True
20ACCOUNT_ACTIVATION_DAYS = 7
21LOGIN_REDIRECT_URL = "/"
22
23EMAIL_HOST = ''
24DEFAULT_FROM_EMAIL = ''
25SERVER_EMAIL = DEFAULT_FROM_EMAIL
26
27MANAGERS = ADMINS
28
29DATABASE_ENGINE = ''
30DATABASE_NAME = ''
31DATABASE_USER = ''
32DATABASE_PASSWORD = ''
33DATABASE_HOST = ''
34DATABASE_PORT = ''
35
36# Local time zone for this installation. Choices can be found here:
37# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
38# although not all choices may be available on all operating systems.
39# If running in a Windows environment this must be set to the same as your
40# system time zone.
41TIME_ZONE = 'America/Chicago'
42
43# Language code for this installation. All choices can be found here:
44# http://www.i18nguy.com/unicode/language-identifiers.html
45LANGUAGE_CODE = 'en-us'
46
47SITE_ID = 1
48
49# If you set this to False, Django will make some optimizations so as not
50# to load the internationalization machinery.
51USE_I18N = True
52
53# Absolute path to the directory that holds media.
54# Example: "/home/media/media.lawrence.com/"
55here = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
56MEDIA_ROOT = os.path.join(here, 'media')
57
58# URL that handles the media served from MEDIA_ROOT. Make sure to use a
59# trailing slash if there is a path component (optional in other cases).
60# Examples: "http://media.lawrence.com", "http://example.com/media/"
61MEDIA_URL = '/media/'
62
63# URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
64# trailing slash.
65# Examples: "http://foo.com/media/", "/media/".
66ADMIN_MEDIA_PREFIX = '/admin-media/'
67
68# Make this unique, and don't share it with anybody.
69SECRET_KEY = 'w_#0r2hh)=!zbynb*gg&969@)sy#^-^ia3m*+sd4@lst$zyaxu'
70
71# List of callables that know how to import templates from various sources.
72TEMPLATE_LOADERS = (
73 'django.template.loaders.filesystem.load_template_source',
74 'django.template.loaders.app_directories.load_template_source',
75# 'django.template.loaders.eggs.load_template_source',
76)
77
78MIDDLEWARE_CLASSES = (
79 'django.middleware.common.CommonMiddleware',
80 'django.contrib.sessions.middleware.SessionMiddleware',
81 'django.contrib.auth.middleware.AuthenticationMiddleware',
82)
83
84ROOT_URLCONF = 'urls'
85
86TEMPLATE_CONTEXT_PROCESSORS = (
87 "django.core.context_processors.auth",
88 "django.core.context_processors.debug",
89 "django.core.context_processors.i18n",
90 "django.core.context_processors.media",
91 "django.core.context_processors.request",
92)
93
94TEMPLATE_DIRS = (
95 # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
96 # Always use forward slashes, even on Windows.
97 # Don't forget to use absolute paths, not relative paths.
98 os.path.join(os.path.dirname(os.path.dirname(__file__)), "templates"),
99)
100
101INSTALLED_APPS = (
102 'django.contrib.auth',
103 'django.contrib.contenttypes',
104 'django.contrib.sessions',
105 'django.contrib.sites',
106 'django.contrib.admin',
107 'django.contrib.markup',
108 'django.contrib.admindocs',
109 'registration',
110 'djangopypi',
111)