{"id":50734511,"url":"https://github.com/elsa-workflows/elsa-templates","last_synced_at":"2026-06-10T12:03:38.369Z","repository":{"id":360559153,"uuid":"1250710979","full_name":"elsa-workflows/elsa-templates","owner":"elsa-workflows","description":".NET solution templates for getting started with Elsa quickly.","archived":false,"fork":false,"pushed_at":"2026-05-26T23:58:59.000Z","size":36,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-27T00:19:12.386Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/elsa-workflows.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":"docs/roadmap.md","authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-26T22:38:50.000Z","updated_at":"2026-05-26T23:59:02.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/elsa-workflows/elsa-templates","commit_stats":null,"previous_names":["elsa-workflows/elsa-templates"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/elsa-workflows/elsa-templates","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elsa-workflows%2Felsa-templates","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elsa-workflows%2Felsa-templates/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elsa-workflows%2Felsa-templates/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elsa-workflows%2Felsa-templates/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/elsa-workflows","download_url":"https://codeload.github.com/elsa-workflows/elsa-templates/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elsa-workflows%2Felsa-templates/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34151289,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-10T02:00:07.152Z","response_time":89,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-06-10T12:03:36.103Z","updated_at":"2026-06-10T12:03:38.364Z","avatar_url":"https://github.com/elsa-workflows.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Elsa Templates\n\n`elsa-templates` provides .NET solution templates for getting started with Elsa quickly.\n\n## Version Policy\n\nThe `main` branch targets the latest stable Elsa release. At repository creation time this is Elsa `3.7.0`.\n\nVersion-specific branches may target exact stable or preview versions, for example:\n\n- `3.7.0`\n- `3.8.0-preview`\n- `3.8.0-preview.1234`\n\n## Planned Templates\n\n- `elsa-server`: Elsa Server with selectable feature model and EF Core persistence provider.\n- `elsa-studio`: Elsa Studio with selectable Blazor hosting model, authentication provider, and optional Labels module.\n- `elsa-combined`: Elsa Server and Elsa Studio in one solution with selectable server feature model, persistence provider, Studio hosting model, Studio authentication provider, and optional Labels module.\n\n## Install From NuGet\n\nStable template packages are published to NuGet.org:\n\n```bash\ndotnet new install Elsa.Templates\n```\n\n## Install From Preview Feed\n\nPreview template packages are published to the Elsa preview feed. Install a preview version by passing the feed URL as an additional source and specifying the preview version:\n\n```bash\ndotnet new install Elsa.Templates@\u003cpreview-version\u003e --add-source https://f.feedz.io/elsa-workflows/elsa-3/nuget/index.json\n```\n\nFor example: `Elsa.Templates@3.8.0-preview.1234`.\n\nTo make the preview feed available for package restore as well, add it to your `NuGet.config` next to the main NuGet feed:\n\n```xml\n\u003c?xml version=\"1.0\" encoding=\"utf-8\"?\u003e\n\u003cconfiguration\u003e\n  \u003cpackageSources\u003e\n    \u003cadd key=\"NuGet.org\" value=\"https://api.nuget.org/v3/index.json\" /\u003e\n    \u003cadd key=\"Elsa 3 Preview\" value=\"https://f.feedz.io/elsa-workflows/elsa-3/nuget/index.json\" /\u003e\n  \u003c/packageSources\u003e\n\u003c/configuration\u003e\n```\n\n## Install From Source\n\n```bash\ndotnet pack src/Elsa.Templates/Elsa.Templates.csproj\ndotnet new install artifacts/package/release/Elsa.Templates.*.nupkg\n```\n\n## Usage\n\nCreate an Elsa Server using static feature registration:\n\n```bash\ndotnet new elsa-server -n MyElsaServer --feature-model static\n```\n\nCreate an Elsa Server using CShells:\n\n```bash\ndotnet new elsa-server -n MyElsaServer --feature-model shell\n```\n\nCreate an Elsa Server using a different EF Core persistence provider:\n\n```bash\ndotnet new elsa-server -n MyElsaServer --persistence sqlite\ndotnet new elsa-server -n MyElsaServer --persistence sqlserver\ndotnet new elsa-server -n MyElsaServer --persistence postgresql\ndotnet new elsa-server -n MyElsaServer --persistence oracle\n```\n\nCreate an Elsa Studio solution:\n\n```bash\ndotnet new elsa-studio -n MyElsaStudio --hosting server\ndotnet new elsa-studio -n MyElsaStudio --hosting wasm\ndotnet new elsa-studio -n MyElsaStudio --hosting hybrid\n```\n\nConfigure Studio authentication and optional modules:\n\n```bash\ndotnet new elsa-studio -n MyElsaStudio --auth-provider elsa-identity\ndotnet new elsa-studio -n MyElsaStudio --auth-provider open-id-connect\ndotnet new elsa-studio -n MyElsaStudio --auth-provider elsa-login --with-labels\n```\n\nCreate a combined Elsa Server + Studio solution:\n\n```bash\ndotnet new elsa-combined -n MyElsaApp --feature-model static --studio-hosting server\ndotnet new elsa-combined -n MyElsaApp --feature-model shell --studio-hosting wasm\ndotnet new elsa-combined -n MyElsaApp --feature-model shell --studio-hosting hybrid --persistence postgresql --auth-provider open-id-connect --with-labels\n```\n\nHybrid Studio output includes a host project and a WASM client project. The generated host reads `Studio:HostingModel` from configuration so the runtime can start Studio as `Server` or `Wasm`.\n\nThe stable `3.7.0` template package exposes only options that restore and build against stable Elsa packages. Preview-only Studio modules and the current MySQL EF provider are intentionally not exposed from `main`.\n\n## Verification\n\nThe smoke tests pack the template package, install it into an isolated template hive, generate every supported option combination, and build the generated outputs.\n\n```bash\ndotnet test test/Elsa.Templates.Tests/Elsa.Templates.Tests.csproj\n```\n\n## Development\n\nSee [Roadmap](docs/roadmap.md) and [Tasks](docs/tasks.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felsa-workflows%2Felsa-templates","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Felsa-workflows%2Felsa-templates","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felsa-workflows%2Felsa-templates/lists"}