Skip to content

Commit 6025013

Browse files
committed
created django project
0 parents  commit 6025013

File tree

5 files changed

+206
-0
lines changed

5 files changed

+206
-0
lines changed

manage.py

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/usr/bin/env python
2+
import os
3+
import sys
4+
5+
if __name__ == "__main__":
6+
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "meander.settings")
7+
8+
from django.core.management import execute_from_command_line
9+
10+
execute_from_command_line(sys.argv)

meander/__init__.py

Whitespace-only changes.

meander/settings.py

+151
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,151 @@
1+
# Django settings for meander project.
2+
3+
DEBUG = True
4+
TEMPLATE_DEBUG = DEBUG
5+
6+
ADMINS = (
7+
# ('Your Name', 'your_email@example.com'),
8+
)
9+
10+
MANAGERS = ADMINS
11+
12+
DATABASES = {
13+
'default': {
14+
'ENGINE': 'django.db.backends.', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
15+
'NAME': '', # Or path to database file if using sqlite3.
16+
'USER': '', # Not used with sqlite3.
17+
'PASSWORD': '', # Not used with sqlite3.
18+
'HOST': '', # Set to empty string for localhost. Not used with sqlite3.
19+
'PORT': '', # Set to empty string for default. Not used with sqlite3.
20+
}
21+
}
22+
23+
# Local time zone for this installation. Choices can be found here:
24+
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
25+
# although not all choices may be available on all operating systems.
26+
# In a Windows environment this must be set to your system time zone.
27+
TIME_ZONE = 'America/Chicago'
28+
29+
# Language code for this installation. All choices can be found here:
30+
# http://www.i18nguy.com/unicode/language-identifiers.html
31+
LANGUAGE_CODE = 'en-us'
32+
33+
SITE_ID = 1
34+
35+
# If you set this to False, Django will make some optimizations so as not
36+
# to load the internationalization machinery.
37+
USE_I18N = True
38+
39+
# If you set this to False, Django will not format dates, numbers and
40+
# calendars according to the current locale.
41+
USE_L10N = True
42+
43+
# If you set this to False, Django will not use timezone-aware datetimes.
44+
USE_TZ = True
45+
46+
# Absolute filesystem path to the directory that will hold user-uploaded files.
47+
# Example: "/home/media/media.lawrence.com/media/"
48+
MEDIA_ROOT = ''
49+
50+
# URL that handles the media served from MEDIA_ROOT. Make sure to use a
51+
# trailing slash.
52+
# Examples: "http://media.lawrence.com/media/", "http://example.com/media/"
53+
MEDIA_URL = ''
54+
55+
# Absolute path to the directory static files should be collected to.
56+
# Don't put anything in this directory yourself; store your static files
57+
# in apps' "static/" subdirectories and in STATICFILES_DIRS.
58+
# Example: "/home/media/media.lawrence.com/static/"
59+
STATIC_ROOT = ''
60+
61+
# URL prefix for static files.
62+
# Example: "http://media.lawrence.com/static/"
63+
STATIC_URL = '/static/'
64+
65+
# Additional locations of static files
66+
STATICFILES_DIRS = (
67+
# Put strings here, like "/home/html/static" or "C:/www/django/static".
68+
# Always use forward slashes, even on Windows.
69+
# Don't forget to use absolute paths, not relative paths.
70+
)
71+
72+
# List of finder classes that know how to find static files in
73+
# various locations.
74+
STATICFILES_FINDERS = (
75+
'django.contrib.staticfiles.finders.FileSystemFinder',
76+
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
77+
# 'django.contrib.staticfiles.finders.DefaultStorageFinder',
78+
)
79+
80+
# Make this unique, and don't share it with anybody.
81+
SECRET_KEY = 'x4suob!!xu&a(gr84*r(r)ri1z73*g7s_-9rv2i#6#-^6cnf_m'
82+
83+
# List of callables that know how to import templates from various sources.
84+
TEMPLATE_LOADERS = (
85+
'django.template.loaders.filesystem.Loader',
86+
'django.template.loaders.app_directories.Loader',
87+
# 'django.template.loaders.eggs.Loader',
88+
)
89+
90+
MIDDLEWARE_CLASSES = (
91+
'django.middleware.common.CommonMiddleware',
92+
'django.contrib.sessions.middleware.SessionMiddleware',
93+
'django.middleware.csrf.CsrfViewMiddleware',
94+
'django.contrib.auth.middleware.AuthenticationMiddleware',
95+
'django.contrib.messages.middleware.MessageMiddleware',
96+
# Uncomment the next line for simple clickjacking protection:
97+
# 'django.middleware.clickjacking.XFrameOptionsMiddleware',
98+
)
99+
100+
ROOT_URLCONF = 'meander.urls'
101+
102+
# Python dotted path to the WSGI application used by Django's runserver.
103+
WSGI_APPLICATION = 'meander.wsgi.application'
104+
105+
TEMPLATE_DIRS = (
106+
# Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
107+
# Always use forward slashes, even on Windows.
108+
# Don't forget to use absolute paths, not relative paths.
109+
)
110+
111+
INSTALLED_APPS = (
112+
'django.contrib.auth',
113+
'django.contrib.contenttypes',
114+
'django.contrib.sessions',
115+
'django.contrib.sites',
116+
'django.contrib.messages',
117+
'django.contrib.staticfiles',
118+
# Uncomment the next line to enable the admin:
119+
# 'django.contrib.admin',
120+
# Uncomment the next line to enable admin documentation:
121+
# 'django.contrib.admindocs',
122+
)
123+
124+
# A sample logging configuration. The only tangible logging
125+
# performed by this configuration is to send an email to
126+
# the site admins on every HTTP 500 error when DEBUG=False.
127+
# See http://docs.djangoproject.com/en/dev/topics/logging for
128+
# more details on how to customize your logging configuration.
129+
LOGGING = {
130+
'version': 1,
131+
'disable_existing_loggers': False,
132+
'filters': {
133+
'require_debug_false': {
134+
'()': 'django.utils.log.RequireDebugFalse'
135+
}
136+
},
137+
'handlers': {
138+
'mail_admins': {
139+
'level': 'ERROR',
140+
'filters': ['require_debug_false'],
141+
'class': 'django.utils.log.AdminEmailHandler'
142+
}
143+
},
144+
'loggers': {
145+
'django.request': {
146+
'handlers': ['mail_admins'],
147+
'level': 'ERROR',
148+
'propagate': True,
149+
},
150+
}
151+
}

meander/urls.py

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
from django.conf.urls import patterns, include, url
2+
3+
# Uncomment the next two lines to enable the admin:
4+
# from django.contrib import admin
5+
# admin.autodiscover()
6+
7+
urlpatterns = patterns('',
8+
# Examples:
9+
# url(r'^$', 'meander.views.home', name='home'),
10+
# url(r'^meander/', include('meander.foo.urls')),
11+
12+
# Uncomment the admin/doc line below to enable admin documentation:
13+
# url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
14+
15+
# Uncomment the next line to enable the admin:
16+
# url(r'^admin/', include(admin.site.urls)),
17+
)

meander/wsgi.py

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
"""
2+
WSGI config for meander project.
3+
4+
This module contains the WSGI application used by Django's development server
5+
and any production WSGI deployments. It should expose a module-level variable
6+
named ``application``. Django's ``runserver`` and ``runfcgi`` commands discover
7+
this application via the ``WSGI_APPLICATION`` setting.
8+
9+
Usually you will have the standard Django WSGI application here, but it also
10+
might make sense to replace the whole Django WSGI application with a custom one
11+
that later delegates to the Django one. For example, you could introduce WSGI
12+
middleware here, or combine a Django application with an application of another
13+
framework.
14+
15+
"""
16+
import os
17+
18+
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "meander.settings")
19+
20+
# This application object is used by any WSGI server configured to use this
21+
# file. This includes Django's development server, if the WSGI_APPLICATION
22+
# setting points here.
23+
from django.core.wsgi import get_wsgi_application
24+
application = get_wsgi_application()
25+
26+
# Apply WSGI middleware here.
27+
# from helloworld.wsgi import HelloWorldApplication
28+
# application = HelloWorldApplication(application)

0 commit comments

Comments
 (0)