Skip to content

Commit 4b5ded7

Browse files
authored
chore: Add reference URLs to docker-compose to user user-management service (#19)
1 parent f42f218 commit 4b5ded7

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

docker-compose.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,28 @@ version: '3.8'
1212
# - Traefik Dashboard: http://localhost:8081/dashboard/
1313
# - Redpanda Console: http://localhost:8082
1414
#
15+
#
16+
# Signing Up
17+
# ---------
18+
# curl -X POST http://localhost:8080/api/users/v1/register \
19+
# -H "Content-Type: application/json" \
20+
# -d '{
21+
# "firstName": "John",
22+
# "lastName": "Doe",
23+
# "emailAddress": "john.doe@example.com",
24+
# "password": "ValidPass123!"
25+
# }'
26+
#
27+
#
28+
# Logging In
29+
# ----------
30+
# curl -X POST http://localhost:8080/api/users/v1/login \
31+
# -H "Content-Type: application/x-www-form-urlencoded" \
32+
# -d "grant_type=password&username=john.doe@example.com&password=ValidPass123!&client_id=user-authentication&client_secret=388D45FA-B36B-4988-BA59-B187D329C207"
33+
34+
#
35+
36+
1537
services:
1638
traefik:
1739
image: traefik:v3.0

0 commit comments

Comments
 (0)