How to use workflow designer in elsa 2 #488
Unanswered
yariamirhossein
asked this question in
Q&A
Replies: 3 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.
0 replies
-
Thank you so much for your response. 👍 |
Beta Was this translation helpful? Give feedback.
0 replies
-
You're welcome. Thank you :) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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