Use camelCase on properties

Signed-off-by: Matheus Cruz <matheuscruz.dev@gmail.com>
This commit is contained in:
Matheus Cruz 2025-07-25 23:12:06 -03:00
parent e666bbdf2f
commit 7afaa1b6fc
1 changed files with 5 additions and 5 deletions

View File

@ -56,11 +56,11 @@ This will connect to the default Dapr gRPC endpoint `localhost:50001`, requiring
{{% alert title="Note" color="primary" %}}
By default, the following properties are preconfigured for `DaprClient` and `DaprWorkflowClient`:
```properties
dapr.client.http-endpoint=http://localhost
dapr.client.http-port=3500
dapr.client.grpc-endpoint=localhost
dapr.client.grpc-port=50001
dapr.client.api-token=<Your Remote App API Token>
dapr.client.httpEndpoint=http://localhost
dapr.client.httpPort=3500
dapr.client.grpcEndpoint=localhost
dapr.client.grpcPort=50001
dapr.client.apiToken=<your remote api token>
```
These values are used by default, but you can override them in your `application.properties` file to suit your environment.
{{% /alert %}}