How to use workflow designer in elsa 2 #488
Replies: 4 comments
-
|
Elsa 2 has no designer at the moment (although it is currently under development). The only way to use Elsa 2 preview as of this writing is by implementing them via code (see the samples directory) |
Beta Was this translation helpful? Give feedback.
-
|
Thank you so much for your response. 👍 |
Beta Was this translation helpful? Give feedback.
-
|
You're welcome. Thank you :) |
Beta Was this translation helpful? Give feedback.
-
|
The original 2020 answer was correct for For current Elsa, the visual designer lives in the separate So for modern versions, the path is to run/use Elsa Studio (or one of the Studio hosts / embeddable components), not to look for a designer URL inside the old preview server setup shown in the original post. Since the preview-era question was already answered and acknowledged by the original poster, I'm closing this discussion as resolved. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm using elsa 2.0.0-preview6.1080, and I want to use workflow designer but I can't run it. Please help...
My startup.cs is like below :
`public void ConfigureServices(IServiceCollection services)
{
services.AddRazorPages();
services
.AddElsa(option => option.UsePersistence(conf => conf.UseSqlServer("Server=localhost;Database=WFTest01;User=sa;Password=Aa@123456;", IsolationLevel.ReadUncommitted)))
.AddHttpActivities()
.AddConsoleActivities()
.AddDataMigration()
.AddIndexProvider()
.AddWorkflowContextProvider()
.AddWorkflow()
.AddElsaApiEndpoints()
.AddElsaClient(conifgure =>
{
conifgure.ServerUrl = new Uri("https://localhost:44319/");
});
I don't know what extra configuration I should do or which url I should try to see designer.
thank you 👍
Beta Was this translation helpful? Give feedback.
All reactions