Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save papaemman/ac5a19c31228b61dee712c9c46cbfaca to your computer and use it in GitHub Desktop.

Select an option

Save papaemman/ac5a19c31228b61dee712c9c46cbfaca to your computer and use it in GitHub Desktop.

Azure function project file structure

.
├── .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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment