Skip to content

Lalo11r/Durable_Function_Template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Durable Function Template

This project is a template for Azure Durable Functions using Python. It provides a basic structure to create and deploy Durable Functions locally.

Setup and Deployment

Requirements

  • Python 3.7 or higher
  • Azure Functions Core Tools
  • Azure Storage Emulator (Includen in windows sdk)

Instalación

  1. Clone the repository:

    git clone <URL_DEL_REPOSITORIO>
    cd Durable_Function_Template
  2. Create and activate de virtual environment:

    python -m venv .venv
    .venv\Scripts\activate  # On Windows
    source .venv/bin/activate  # On macOS/Linux
  3. Install dependencies:

    pip install -r requirements.txt

Main functions

  • Http_Start (Client): HTTP entry point that starts the orchestration.
  • Orchestrator: Coordinates the execution of activities.
  • Activity: Performs a specific task and returns a result.

Durable Function Components

Local Execution

To run the project locally, use the following command:

func start

If you want the console to display detailed execution debugging, use:

func host start --verbose

Contributions

Contributions are welcome. Please open an issue or pull request to discuss any changes you would like to make.

About

This project is a template for Azure Durable Functions using Python. It provides a basic structure to create and deploy Durable Functions locally.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages