microstack/snap-overlay/bin/horizon-wsgi
Pete Vander Giessen 0b4c7a22a3 Fix horizon dashboard
Port the python2.7 local settings overrides to the python3.6 directory
structure.

Move all local_settings.py overrides into _05_snap_tweaks.py as part
of troubleshooting some remaining problems. Everything is more
organized and functional now :-)

Added selenium tests.

Change-Id: I54923e1dc9c7ffa47c2ef6fb90ea9d224b0d2eee
2019-09-16 13:25:39 +00:00

9 lines
194 B
Python
Executable File

#!/usr/bin/env python3
import os
import sys
os.environ['DJANGO_SETTINGS_MODULE'] = 'openstack_dashboard.settings'
import django.core.wsgi
application = django.core.wsgi.get_wsgi_application()