Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
370 changes: 186 additions & 184 deletions .github/workflows/enterprise.yml

Large diffs are not rendered by default.

226 changes: 226 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,230 @@
# Marketplace archive generated by marketplace/makeArchive.sh
archive.zip

# ARM Template Testing - all working files and temporary data
.arm-testing/

# Python
## Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

## C extensions
*.so

## Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

## PyInstaller
*.manifest
*.spec

## Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
cover/

## Flask/Django stuff
instance/
.webassets-cache
db.sqlite3
db.sqlite3-journal

## Scrapy stuff
.scrapy

## Sphinx documentation
docs/_build/

## PyBuilder
.pybuilder/
target/

## Jupyter Notebook
.ipynb_checkpoints

## IPython
profile_default/
ipython_config.py

## pyenv
.python-version

## pipenv
Pipfile.lock

## Poetry
poetry.lock

## PEP 582
__pypackages__/

## Celery stuff
celerybeat-schedule
celerybeat.pid

## SageMath parsed files
*.sage.py

## Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

## Spyder project settings
.spyderproject
.spyproject

## Rope project settings
.ropeproject

## mkdocs documentation
/site

## mypy
.mypy_cache/
.dmypy.json
dmypy.json

## Pyre type checker
.pyre/

## pytype static type analyzer
.pytype/

## Cython debug symbols
cython_debug/

## uv (uv.lock should be committed for reproducibility)
.uv/

# IDEs and Editors
## JetBrains IDEs (IntelliJ, PyCharm, etc.)
.idea/
*.iml
*.iws
*.ipr
.idea_modules/

## VS Code
.vscode/
*.code-workspace

## Sublime Text
*.sublime-project
*.sublime-workspace

## Vim
*.swp
*.swo
*~
.vim/

## Emacs
*~
\#*\#
/.emacs.desktop
/.emacs.desktop.lock
*.elc
auto-save-list
tramp
.\#*

# Operating System Files
## macOS
.DS_Store
.AppleDouble
.LSOverride
Icon
._*
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

## Windows
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db
*.stackdump
[Dd]esktop.ini
$RECYCLE.BIN/
*.cab
*.msi
*.msix
*.msm
*.msp
*.lnk

## Linux
*~
.fuse_hidden*
.directory
.Trash-*
.nfs*

# Logs and databases
*.log
*.sql
*.sqlite
*.db

# Temporary files
*.tmp
*.temp
*.bak
*.swp
*.swo

# Azure and ARM specific
parameters.local.json
*.parameters.local.json
azuredeploy.parameters.*.json

# Bicep generated files (source is .bicep, JSON is generated)
*-compiled.json
*-generated.json
mainTemplate-*.json
# Azure credentials (sensitive)
azure-credentials.json
Loading
Loading