Skip to content

Commit aa745a3

Browse files
committed
WIP
1 parent e7c2162 commit aa745a3

1 file changed

Lines changed: 26 additions & 1 deletion

File tree

website/docs/getting-started/quick-start.mdx

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,32 @@ docker run -d \
8383

8484
Once the container is running, open the RabbitMQ Management UI in your browser at http://localhost:15672 and log in with the default credentials, username: guest and password: guest, to verify that RabbitMQ is running correctly.
8585

86-
## Create a Test NServiceBus Endpoint
86+
## Quickly Running an NServiceBus Endpoint (Demo Mode)
87+
88+
Before sending messages with Busly, you need an active endpoint connected to your configured transport.
89+
90+
To make this easy, Busly provides a demo mode, which automatically creates and runs an NServiceBus endpoint using your current transport configuration.
91+
92+
## Starting Demo Mode
93+
94+
Run the following command to start the demo endpoint
95+
96+
```bash
97+
busly demo start
98+
```
99+
100+
## What Demo Mode Does
101+
102+
- Creates and starts an NServiceBus endpoint named `BuslyDemo` using your transport configuration.
103+
- Allows Busly to receive any command sent to it.
104+
- Automatically subscribes to a single event: `Messages.Events.OrderPlaced`
105+
106+
107+
:::warning
108+
109+
Demo mode is intended strictly for this quick-start guide. Using it outside of this context is highly discouraged, as it will attempt to create queues and exchanges in whatever transport is currently configured. If your current transport happens to be pointed production or shared environments this will not be ideal.
110+
111+
:::
87112

88113
## Send a command
89114

0 commit comments

Comments
 (0)