.
├── .venv # Python Virtual environment
├── .vscode # Configuration options for VSCode
├── host.json # Configuration options that affect all functions in a function app instance
├── local.settings.json # Maintains settings used when running functions locally.These settings aren't used when running in Azure
|
├── AzureFunction_1
│ ├── function.json # Azure Function Settings
│ ├── __init__.py # Python Code
│ └── readme.md # Documentation
|
├── AzureFunction_2
│ ├── function.json
│ ├── __init__.py
│ └── readme.md
|
└── requirements.txt # Package dependencies
Created
May 23, 2022 09:31
-
-
Save papaemman/ac5a19c31228b61dee712c9c46cbfaca to your computer and use it in GitHub Desktop.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment