We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd48409 commit e24d359Copy full SHA for e24d359
.funcignore
@@ -5,4 +5,5 @@ __blobstorage__
5
__queuestorage__
6
local.settings.json
7
test
8
-.venv
+.venv
9
+.azure_function_fastapi_venv
function_app.py
@@ -0,0 +1,5 @@
1
+import azure.functions as func
2
+
3
+from fastapi_project.main import app as fastapi_app
4
+app = func.AsgiFunctionApp(app=fastapi_app, http_auth_level=func.AuthLevel.ANONYMOUS)
0 commit comments