We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 751a49b + e9f2627 commit eacf4b5Copy full SHA for eacf4b5
3 files changed
src/.funcignore
@@ -0,0 +1,8 @@
1
+.git*
2
+.vscode
3
+__azurite_db*__.json
4
+__blobstorage__
5
+__queuestorage__
6
+local.settings.json
7
+test
8
+.venv
src/host.json
@@ -0,0 +1,15 @@
+{
+ "version": "2.0",
+ "logging": {
+ "applicationInsights": {
+ "samplingSettings": {
+ "isEnabled": true,
+ "excludedTypes": "Request"
+ }
9
10
+ },
11
+ "extensionBundle": {
12
+ "id": "Microsoft.Azure.Functions.ExtensionBundle",
13
+ "version": "[4.*, 5.0.0)"
14
15
+}
src/requirements.txt
@@ -0,0 +1,7 @@
+# DO NOT include azure-functions-worker in this file
+# The Python Worker is managed by Azure Functions platform
+# Manually managing azure-functions-worker may cause unexpected issues
+
+azure-functions
+pdfminer.six
+azure-cosmos==4.3.0
0 commit comments