davidtran999 commited on
Commit
fb65c6a
·
verified ·
1 Parent(s): 4b66feb

Upload backend/hue_portal/hue-portal-backendDocker/hue_portal/hue_portal/wsgi.py with huggingface_hub

Browse files
backend/hue_portal/hue-portal-backendDocker/hue_portal/hue_portal/wsgi.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ import os
2
+ from django.core.wsgi import get_wsgi_application
3
+ os.environ.setdefault("DJANGO_SETTINGS_MODULE", "hue_portal.hue_portal.settings")
4
+ application = get_wsgi_application()
5
+