You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/user-guide/configuration.md
+130Lines changed: 130 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -608,6 +608,136 @@ app.Run();
608
608
609
609
---
610
610
611
+
## Governance Configuration
612
+
613
+
ExperimentFramework.Governance can be configured via YAML/JSON, enabling lifecycle management, approval gates, and policy-as-code guardrails without code changes.
614
+
615
+
### Installing Governance
616
+
617
+
```bash
618
+
dotnet add package ExperimentFramework.Governance
619
+
```
620
+
621
+
### Governance Schema
622
+
623
+
```yaml
624
+
experimentFramework:
625
+
governance:
626
+
enableAutoVersioning: true
627
+
628
+
approvalGates:
629
+
- type: automatic | manual | roleBased
630
+
fromState: Draft | PendingApproval | Approved | etc.
631
+
toState: PendingApproval | Approved | Running | etc.
0 commit comments