Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Gyuricska Milán
/
cloud
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
You need to sign in or sign up before continuing.
Commit
ef249bc8
authored
Jan 25, 2013
by
x
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Split production settings.
parent
156fc6bc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
6 deletions
+9
-6
.gitignore
+2
-0
cloud/settings.py
+7
-6
No files found.
.gitignore
View file @
ef249bc8
...
@@ -37,3 +37,5 @@ nosetests.xml
...
@@ -37,3 +37,5 @@ nosetests.xml
# Other
# Other
*.swp
*.swp
*~
*~
local_settings.py
cloud/settings.py
View file @
ef249bc8
# Django settings for cloud project.
# Django settings for cloud project.
DEBUG
=
True
DEBUG
=
True
TEMPLATE_DEBUG
=
DEBUG
TEMPLATE_DEBUG
=
DEBUG
ADMINS
=
(
ADMINS
=
(
(
'
Ory, Mate'
,
'maat
@iit.bme.hu'
),
(
'
IK'
,
'cloud
@iit.bme.hu'
),
)
)
MANAGERS
=
ADMINS
MANAGERS
=
ADMINS
...
@@ -113,12 +114,9 @@ INSTALLED_APPS = (
...
@@ -113,12 +114,9 @@ INSTALLED_APPS = (
'django.contrib.auth'
,
'django.contrib.auth'
,
'django.contrib.contenttypes'
,
'django.contrib.contenttypes'
,
'django.contrib.sessions'
,
'django.contrib.sessions'
,
'django.contrib.sites'
,
'django.contrib.messages'
,
'django.contrib.messages'
,
'django.contrib.staticfiles'
,
'django.contrib.staticfiles'
,
# Uncomment the next line to enable the admin:
'django.contrib.admin'
,
'django.contrib.admin'
,
# Uncomment the next line to enable admin documentation:
'django.contrib.admindocs'
,
'django.contrib.admindocs'
,
'one'
,
'one'
,
'school'
,
'school'
,
...
@@ -128,7 +126,6 @@ INSTALLED_APPS = (
...
@@ -128,7 +126,6 @@ INSTALLED_APPS = (
'south'
,
'south'
,
'djcelery'
,
'djcelery'
,
'kombu.transport.django'
,
'kombu.transport.django'
,
#'django_bfm',
)
)
# A sample logging configuration. The only tangible logging
# A sample logging configuration. The only tangible logging
...
@@ -136,7 +133,7 @@ INSTALLED_APPS = (
...
@@ -136,7 +133,7 @@ INSTALLED_APPS = (
# the site admins on every HTTP 500 error when DEBUG=False.
# the site admins on every HTTP 500 error when DEBUG=False.
# See http://docs.djangoproject.com/en/dev/topics/logging for
# See http://docs.djangoproject.com/en/dev/topics/logging for
# more details on how to customize your logging configuration.
# more details on how to customize your logging configuration.
from
logging.handlers
import
SysLogHandler
from
logging.handlers
import
SysLogHandler
LOGGING
=
{
LOGGING
=
{
'version'
:
1
,
'version'
:
1
,
...
@@ -178,5 +175,9 @@ import djcelery
...
@@ -178,5 +175,9 @@ import djcelery
djcelery
.
setup_loader
()
djcelery
.
setup_loader
()
BROKER_URL
=
'django://'
BROKER_URL
=
'django://'
try
:
from
cloud.local_settings
import
*
except
:
pass
# vim: et sw=4 ai fenc=utf8 smarttab :
# vim: et sw=4 ai fenc=utf8 smarttab :
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment