How to build Workflow Server from GitHub
In this quick guide, we will give you instructions on how to build Workflow Server from our public GitHub repository.
- Clone the repository and change the directory to the cloned repository:
git clone git@github.com:optimajet/WorkflowServer.git
cd WorkflowServer - Build Workflow Server solution:
dotnet build WorkflowServer.sln
- You can edit Workflow Server configuration in the
config.json
file in the root directory of the repository. - Launch your database. You can find more information about running Workflow Server with a custom database here.
- Run Workflow Server:
cd WorkflowServer
dotnet run
Your Workflow Server is now up and running. That's it!