This sample demonstrates connecting forms to Workflow Engine. See the detailed documentation here.
- Create an empty Microsoft SQL Server (MSSQL) database. This sample works only with Microsoft SQL Server.
- In /backend/WorkflowApi/appsettings.json, update the connection string to point to your database.
- From the root of the cloned repository, run:
cd backend dotnet build cd WorkflowApi dotnet run
- The backend will start and automatically run the required scripts against your database. To verify a successful start, open
https://localhost:5141/swagger/in your browser—you should see the project's API description. - From the repository root, run:
cd frontend npm install npm run dev - Open
http://localhost:5142/to view the sample UI. Usage instructions are available here.