forked from ezaero/CAPWATCHpwsh
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.funcignore
More file actions
55 lines (51 loc) · 1.08 KB
/
Copy path.funcignore
File metadata and controls
55 lines (51 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Azure Functions deployment exclusions
#
# IMPORTANT: This file excludes the Modules/ directory from deployment to stay under
# the 150MB Azure Functions size limit. Modules are uploaded to Azure Storage instead
# and loaded at runtime.
#
# For module setup instructions, see: DEPLOYMENT.md (Step 2: PowerShell Module Setup)
#
# Module Loading Strategy:
# - Modules excluded here (Modules/) are uploaded to Azure Storage
# - Runtime loading handled by shared/Load-Modules.ps1
# - Primary dependency management via requirements.psd1
#
.git*
.vscode/
.github/
__azurite_db*__.json
__blobstorage__
__queuestorage__
local.settings.json
test/
# Large directories - exclude entirely with multiple patterns
terraform
terraform/*
terraform/**
Modules
Modules/*
Modules/**
logs
logs/*
logs/**
data
data/*
data/**
# Documentation and text files
*.md
*.txt
*.log
*.bak
*.backup
*.csv
*.zip
LICENSE
README.md
readme.md
CONFIGURATION.md
# Module management script (not needed at runtime)
Download_Modules.ps1
# Git and development files
.gitignore
.git/