update requirements
Browse files- backend/requirements.txt +0 -0
- backend/wsgi.py +4 -0
backend/requirements.txt
CHANGED
|
Binary files a/backend/requirements.txt and b/backend/requirements.txt differ
|
|
|
backend/wsgi.py
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from main import app
|
| 2 |
+
from asgiref.wsgi import WsgiToAsgi
|
| 3 |
+
|
| 4 |
+
application = WsgiToAsgi(app)
|