documentation/Reference/Configuration/Flyway Namespace/Flyway Dapr Namespace/Flyway Dapr URL Setting.md
{% include enterprise.html %}
The REST API URL of your Dapr sidecar,
Example: http://localhost:3500/v1.0/secrets/my-secrets-store
String
<i>none</i>
This can't be set in a config file via Flyway Desktop, although it will be honoured, and it can be configured as an advanced parameter in operations on the Migrations page.
./flyway -dapr.url="http://localhost:3500/v1.0/secrets/my-secrets-store" info
[flyway.dapr]
url = "http://localhost:3500/v1.0/secrets/my-secrets-store"
flyway.dapr.url=http://localhost:3500/v1.0/secrets/my-secrets-store
FLYWAY_DAPR_URL=http://localhost:3500/v1.0/secrets/my-secrets-store
DaprConfigurationExtension daprConfigurationExtension = configuration.getConfigurationExtension(DaprConfigurationExtension.class);
daprConfigurationExtension.setDaprUrl("http://localhost:3500/v1.0/secrets/my-secrets-store");
flyway {
dapr = [
daprUrl: 'http://localhost:3500/v1.0/secrets/my-secrets-store'
]
}
<configuration>
<dapr>
<daprUrl>http://localhost:3500/v1.0/secrets/my-secrets-store</daprUrl>
</dapr>
</configuration>