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
A simulator that provides endpoints to mimic the functionality of [Azure Event Grid](https://azure.microsoft.com/en-au/services/event-grid/) topics and subscribers and is compatible with the `Microsoft.Azure.EventGrid` client library. Both the `EventGrid` schema and the `CloudEvents v1.0` schema are supported.
10
11
12
+
## Installation
13
+
14
+
### .NET Tool (Recommended)
15
+
16
+
Install as a global .NET tool:
17
+
18
+
```bash
19
+
dotnet tool install -g AzureEventGridSimulator
20
+
```
21
+
22
+
Then run with:
23
+
24
+
```bash
25
+
azure-eventgrid-simulator
26
+
```
27
+
28
+
To update to the latest version:
29
+
30
+
```bash
31
+
dotnet tool update -g AzureEventGridSimulator
32
+
```
33
+
34
+
### Docker
35
+
36
+
See the [Docker](#docker) section below for running via Docker.
37
+
38
+
### Binary Release
39
+
40
+
Download standalone executables from [GitHub Releases](https://github.com/pmcilreavy/AzureEventGridSimulator/releases).
41
+
11
42
## Configuration
12
43
13
44
Topics and their subscribers are configured in the `appsettings.json` file.
<Description>A simulator that provides endpoints to mimic the functionality of Azure Event Grid topics and subscribers. Compatible with the Microsoft.Azure.EventGrid client library. Supports both EventGrid and CloudEvents v1.0 schemas.</Description>
0 commit comments