Skip to content

Run From Source

Akram El Assas edited this page Feb 13, 2024 · 4 revisions

To run Wexflow from source on Windows, proceed as follows:

  • Clone the source down to your machine:
    git clone https://github.com/aelassas/wexflow.git
    
  • Install Visual Studio 2022 >= 17.8.0.
  • .NET: Copy the folders Wexflow and WexflowTesting in C:\. You can download them from here.
  • .NET Core: Copy the folders Wexflow-netcore and WexflowTesting in C:\. You can download them from here.
  • If you installed Wexflow, make sure that Wexflow Windows Service is stopped and that the port 8000 is available. Othewise, you can change the port from the settings.
  • Restore nuget packages through the following command:
    nuget restore Wexflow.sln
    
  • Open Wexflow.sln in Visual Studio.
  • Make sure that all the projects are set to Debug Any CPU.
  • Debug the project Wexflow.Server to start Wexflow Server in debug mode.
  • Debug the project Wexflow.Clients.Manager to start Wexflow Manager in debug mode or open the backend and trigger your workflows from there.
Clone this wiki locally