@@ -23,7 +23,7 @@ WebhookX is an open-source webhooks gateway for message receiving, processing, a
2323
2424## Features
2525
26- - ** Admin API:** Expose a RESTful API on port ` :8080 ` for managing WebhookX entities.
26+ - ** Admin API:** Expose a RESTful API on port ` :9601 ` for managing WebhookX entities.
2727- ** Retries:** Automatically retry unsuccessful deliveries with configurable delays.
2828- ** Fan out:** Route events to multiple endpoints based on the event type.
2929- ** Rate Limiting:** Protect the gateway ingestion and delivery endpoints from overload.
@@ -67,7 +67,7 @@ curl -O https://raw.githubusercontent.com/webhookx-io/webhookx/main/docker-compo
6767Once it's running, you will see HTTP 200 response
6868
6969```
70- curl http://localhost:8080
70+ curl http://localhost:9601
7171```
7272
7373``` http
@@ -102,10 +102,10 @@ Once it is set up, you're ready to send events to WebhookX.
102102
103103### 3. Send events to WebhookX
104104
105- > The Ingestion is exposed on port ` :8081 `
105+ > The Ingestion is exposed on port ` :9600 `
106106
107107```
108- curl -X POST http://localhost:8081 \
108+ curl -X POST http://localhost:9600 \
109109--header 'Content-Type: application/json' \
110110--data '{
111111 "event_type": "charge.succeeded",
@@ -125,12 +125,12 @@ We sent a `charge.succeeded` event including `data` to WebhookX, and it will be
125125>
126126> Attempt object represents the delivery result of an event, and contains inspection information.
127127
128- > The Admin is exposed on port ` :8080 `
128+ > The Admin is exposed on port ` :9601 `
129129
130130Let's make a request to retrieve the attempt list
131131
132132```
133- curl http://localhost:8080 /workspaces/default/attempts
133+ curl http://localhost:9601 /workspaces/default/attempts
134134```
135135
136136<details >
@@ -174,7 +174,7 @@ curl http://localhost:8080/workspaces/default/attempts
174174To inspect the data such as ` request.headers ` , ` request.body ` , ` response.headers ` , and ` response.body ` , try
175175
176176```
177- http://localhost:8080 /workspaces/default/attempts/338lax8Xe774EhimzBukip37Zne
177+ http://localhost:9601 /workspaces/default/attempts/338lax8Xe774EhimzBukip37Zne
178178```
179179
180180<details >
@@ -243,8 +243,8 @@ Usage:
243243Available Commands:
244244 admin Admin commands
245245 completion Generate the autocompletion script for the specified shell
246+ db Database commands
246247 help Help about any command
247- migrations
248248 start Start server
249249 version Print the version
250250
0 commit comments