X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FLW-UI.git;a=blobdiff_plain;f=sf_t3d%2Fsettings.py;h=d000e65b975a6ffe364fa45e3605288988e754c6;hp=2b22ac1dd17be760f142458eba751bc1ad2c50a8;hb=3fcf21a3589d2e9f94b2de318d3dc0404f4be94b;hpb=0dc79eb941c0222f6d53d27fb2bca839bd60780d diff --git a/sf_t3d/settings.py b/sf_t3d/settings.py index 2b22ac1..d000e65 100644 --- a/sf_t3d/settings.py +++ b/sf_t3d/settings.py @@ -29,7 +29,7 @@ if os.getenv('DJANGO_ENV') == 'prod': DEBUG = False else: DEBUG = True - print DEBUG + ALLOWED_HOSTS = ['*'] AUTH_USER_MODEL = "authosm.OsmUser" @@ -53,11 +53,14 @@ INSTALLED_APPS = [ 'django.contrib.sessions', 'authosm', 'projecthandler', + 'packagehandler', 'descriptorhandler', 'vimhandler', + 'wimhandler', 'instancehandler', 'sdnctrlhandler', - 'userhandler' + 'userhandler', + 'netslicehandler' ] @@ -90,11 +93,14 @@ TEMPLATES = [ os.path.join(BASE_DIR, 'projecthandler', 'template'), os.path.join(BASE_DIR, 'projecthandler', 'template', 'download'), os.path.join(BASE_DIR, 'projecthandler', 'template', 'project'), + os.path.join(BASE_DIR, 'packagehandler', 'template'), os.path.join(BASE_DIR, 'descriptorhandler', 'template'), os.path.join(BASE_DIR, 'vimhandler', 'template'), + os.path.join(BASE_DIR, 'wimhandler', 'template'), os.path.join(BASE_DIR, 'instancehandler', 'template'), os.path.join(BASE_DIR, 'sdnctrlhandler', 'template'), os.path.join(BASE_DIR, 'userhandler', 'templates'), + os.path.join(BASE_DIR, 'netslicehandler', 'template'), ], 'APP_DIRS': True, 'OPTIONS': {