Evelyn Management UI

Introduction

Evelyn is a feature toggling framework. It allows users to decouple software releases from the functional changes within, reducing the risk of deployment and providing rollback functionality.

The Evelyn Stack consists of the following parts:

  • A core framework providing the underlying feature toggling functionality, written in C# and targetting .NET Standard 2.0
  • A REST API server and client that expose this functionality over HTTP, written in C# and targetting .NET Standard 2.0. Sample hosts are provided for .NET Core 2.1.
  • A management user interface, built on React/Redux/Node.

Evelyn has a modular architecture which allows for flexible deployment configurations and user extensibility. The core framework is built around CQRS and Event Sourcing: implementations are provided for an in-memory event store and for Greg Young’s Event Store; you can plug in your own event store integration.

This project is pre-release: things might break at any moment; APIs might change; it is insecure.

This documentation

This documentation is for the management UI.

For more information on the core framework and the REST API server and client head over to https://evelyn-management-ui.readthedocs.io/en/latest/.