diff --git a/misp-dashboard.wsgi b/misp-dashboard.wsgi new file mode 100644 index 0000000..47924c5 --- /dev/null +++ b/misp-dashboard.wsgi @@ -0,0 +1,4 @@ +import sys,os,os.path +sys.path.insert(0, os.path.dirname(__file__)) +os.environ["DASH_CONFIG"] = os.path.join(os.path.dirname(__file__), "config") +from server import app as application