|
@@ -3,6 +3,9 @@ import os
|
|
# Board address
|
|
# Board address
|
|
BOARD_ADDRESS = 'http://127.0.0.1:8000/'
|
|
BOARD_ADDRESS = 'http://127.0.0.1:8000/'
|
|
|
|
|
|
|
|
+# Allowed hosts
|
|
|
|
+ALLOWED_HOSTS = ['*']
|
|
|
|
+
|
|
# Admin control panel path
|
|
# Admin control panel path
|
|
# Leave this setting empty
|
|
# Leave this setting empty
|
|
ADMIN_PATH = ''
|
|
ADMIN_PATH = ''
|
|
@@ -261,4 +264,4 @@ LOGGING = {
|
|
# Misago's loaddata command requires complete list of
|
|
# Misago's loaddata command requires complete list of
|
|
# installed apps in order to work correctly
|
|
# installed apps in order to work correctly
|
|
import copy
|
|
import copy
|
|
-INSTALLED_APPS_COMPLETE = copy.copy(INSTALLED_APPS)
|
|
|
|
|
|
+INSTALLED_APPS_COMPLETE = copy.copy(INSTALLED_APPS)
|