commit | 20892e5a1f8f73328147c2dc7b223229a5b07b92 | [log] [tgz] |
---|---|---|
author | Ubuntu <dtraviglia@gmail.com> | Thu May 05 22:33:31 2016 +0000 |
committer | Ubuntu <dtraviglia@gmail.com> | Thu May 05 22:33:31 2016 +0000 |
tree | 036f65d0e27b0f2ef252747d5fd2e5350ad74356 | |
parent | 786cf3e30678ee22de669b0ab3f15b19329d60d5 [diff] |
moving ALE_URL to secret.py
diff --git a/xdata/settings/production.py b/xdata/settings/production.py index 34344a7..d05f3d6 100755 --- a/xdata/settings/production.py +++ b/xdata/settings/production.py
@@ -12,6 +12,8 @@ from base import * +from secret import MY_ALE_URL + INSTALLED_APPS += ( 'django_extensions', ) @@ -20,4 +22,4 @@ TEMPLATE_DEBUG = False # Activity Logging Endpoint -ALE_URL = 'http://127.0.0.1' +ALE_URL = MY_ALE_URL