summaryrefslogtreecommitdiff
path: root/sbhs_server/settings.py
diff options
context:
space:
mode:
Diffstat (limited to 'sbhs_server/settings.py')
-rw-r--r--sbhs_server/settings.py17
1 files changed, 6 insertions, 11 deletions
diff --git a/sbhs_server/settings.py b/sbhs_server/settings.py
index 7c03dfa..3625fc1 100644
--- a/sbhs_server/settings.py
+++ b/sbhs_server/settings.py
@@ -62,8 +62,7 @@ INSTALLED_APPS = (
'undelete',
#'yaksh',
'taggit',
- #'corsheaders'
- 'django_crontab',
+ #'corsheaders',
'account',
'myadmin',
@@ -99,11 +98,11 @@ if is_production:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
- 'NAME': 'database_name',
- 'USER': 'username',
- 'PASSWORD': 'password',
- 'HOST': 'localhost',
- 'PORT': '3306',
+ 'NAME': credentials.DB_NAME,
+ 'USER': credentials.DB_USER,
+ 'PASSWORD': credentials.DB_PASS,
+ 'HOST': credentials.DB_HOST,
+ 'PORT': credentials.DB_PORT,
}
}
else:
@@ -186,10 +185,6 @@ TEMPLATES = [
},
]
-CRONJOBS = [
- ('2 * * * *', 'maintenance.health_monitor.main', '>> /tmp/health_monitor.log'),
-]
-
import warnings
warnings.filterwarnings(
'ignore', r"DateTimeField .* received a naive datetime",