Slickflow web test project provides a web interface for testing workflow instances.
286
Test and demo frontend for Slickflow.NET workflow engine. Provides a web interface for testing workflows and managing workflow instances.
docker pull besley2096/slickflow-webtest:latest
docker run -d -p 5001:5001 \
-e WfDBConnectionType=PGSQL \
-e WfDBConnectionString="Server=host.docker.internal;Port=5432;Database=wfdbbpmn2;User Id=postgres;Password=your-password;TimeZone=UTC;" \
--name slickflow-webtest \
besley2096/slickflow-webtest:latest
Open your browser and navigate to:
Configure database connection using environment variables:
-e WfDBConnectionType=PGSQL
-e WfDBConnectionString="Server=host.docker.internal;Port=5432;Database=wfdbbpmn2;User Id=postgres;Password=your-password;TimeZone=UTC;"
services:
webtest:
image: besley2096/slickflow-webtest:latest
ports:
- "5001:5001"
environment:
- WfDBConnectionType=PGSQL
- WfDBConnectionString=Server=host.docker.internal;Port=5432;Database=wfdbbpmn2;User Id=postgres;Password=your-password;TimeZone=UTC;
depends_on:
- api
| Variable | Description | Default |
|---|---|---|
ASPNETCORE_URLS | Application listening address | http://+:5001 |
ASPNETCORE_ENVIRONMENT | Runtime environment | Production |
WfDBConnectionType | Database type | PGSQL |
WfDBConnectionString | Database connection string | From appsettings.json |
WebTest requires:
latest - Latest stable versionv3.5.0 - Version 3.5.0v3.5 - Version 3.5.xv3 - Version 3.xMIT License
Content type
Image
Digest
sha256:f434f9e28…
Size
124.3 MB
Last updated
9 months ago
docker pull besley2096/slickflow-webtest