Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,22 @@ Resource server introspection credentials (confidential client in Keycloak):

### 2. Start in DEV mode (auto-restart on code changes)

Start services:

```pwsh
docker compose -f docker-compose.yaml -f docker-compose.dev.yaml up --build
```

Enable code watching (run in another terminal):

```pwsh
docker compose -f docker-compose.yaml -f docker-compose.dev.yaml watch
```

If `watch` is not supported by your Docker Compose version, keep `up --build` running and restart only the app container manually after code changes:

```pwsh
docker compose -f docker-compose.yaml -f docker-compose.dev.yaml up --build --watch
docker compose -f docker-compose.yaml -f docker-compose.dev.yaml restart jwt-demo
```

Keycloak automatically imports:
Expand Down
Loading