Skip to content

Commit 0e308de

Browse files
committed
serverless function
1 parent 28202c7 commit 0e308de

8 files changed

Lines changed: 2222 additions & 0 deletions

File tree

invoice-function/.funcignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
*.js.map
2+
*.ts
3+
.git*
4+
.vscode
5+
local.settings.json
6+
test
7+
getting_started.md
8+
node_modules/@types/
9+
node_modules/azure-functions-core-tools/
10+
node_modules/typescript/

invoice-function/.gitignore

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
bin/
2+
**/bin/
3+
!Modules/**
4+
obj
5+
csx
6+
.vs
7+
edge
8+
Publish
9+
10+
*.user
11+
*.suo
12+
*.cscfg
13+
*.Cache
14+
project.lock.json
15+
16+
/packages
17+
/TestResults
18+
19+
/tools/NuGet.exe
20+
/App_Data
21+
/secrets
22+
/data
23+
.secrets
24+
appsettings.json
25+
local.settings.json
26+
27+
node_modules
28+
dist
29+
30+
# Local python packages
31+
.python_packages/
32+
33+
# Python Environments
34+
.env
35+
.venv
36+
env/
37+
venv/
38+
ENV/
39+
env.bak/
40+
venv.bak/
41+
42+
# Byte-compiled / optimized / DLL files
43+
__pycache__/
44+
*.py[cod]
45+
*$py.class
46+
47+
# Azurite artifacts
48+
__blobstorage__
49+
__queuestorage__
50+
__azurite_db*__.json
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"recommendations": [
3+
"ms-azuretools.vscode-azurefunctions"
4+
]
5+
}

invoice-function/host.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"version": "2.0",
3+
"logging": {
4+
"applicationInsights": {
5+
"samplingSettings": {
6+
"isEnabled": true,
7+
"excludedTypes": "Request"
8+
}
9+
}
10+
},
11+
"extensionBundle": {
12+
"id": "Microsoft.Azure.Functions.ExtensionBundle",
13+
"version": "[4.*, 5.0.0)"
14+
}
15+
}

0 commit comments

Comments
 (0)