summaryrefslogtreecommitdiff
path: root/settings.py
diff options
context:
space:
mode:
Diffstat (limited to 'settings.py')
-rw-r--r--settings.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/settings.py b/settings.py
index 362c100b..f7524d93 100644
--- a/settings.py
+++ b/settings.py
@@ -118,11 +118,15 @@ INSTALLED_APPS = (
'devel',
'public',
'releng',
+ 'visualize',
)
## Server used for linking to PGP keysearch results
PGP_SERVER = 'pgp.mit.edu:11371'
+# URL to fetch a current list of available ISOs
+ISO_LIST_URL = 'https://repo.parabolagnulinux.org/isos/'
+
## Import local settings
from local_settings import *
@@ -140,7 +144,4 @@ if DEBUG_TOOLBAR:
INSTALLED_APPS = list(INSTALLED_APPS) + [ 'debug_toolbar' ]
-# URL to fetch a current list of available ISOs
-ISO_LIST_URL = 'https://repo.parabolagnulinux.org/isos/'
-
# vim: set ts=4 sw=4 et: