Skip to content

Commit 06e0503

Browse files
authored
Enable DevServices by default (#274)
1 parent 2c8c7ab commit 06e0503

4 files changed

Lines changed: 3 additions & 8 deletions

File tree

docs/modules/ROOT/pages/includes/devservices.adoc

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
Quarkus Dapr Extension provides a DevService to enhance your experience with Quarkus and Dapr.
22

3-
== Enabling / Disabling Dev Services for Dapr
4-
5-
Dev Services for Dapr are disabled by default unless:
6-
7-
- `quarkus.dapr.devservices.enabled` is set to `true`
8-
93
== Setting Dapr image
104

115
Dev Services for Dapr uses the latest `daprio/daprd` image (`diagrid/daprd:latest`). You can change this image using the `quarkus.dapr.devservices.image-name` property.

docs/modules/ROOT/pages/includes/quarkus-dapr.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Environment variable: `+++QUARKUS_DAPR_DEVSERVICES_ENABLED+++`
2929
endif::add-copy-button-to-env-var[]
3030
--
3131
|boolean
32-
|
32+
|`true`
3333

3434
a|icon:lock[title=Fixed at build time] [[quarkus-dapr_quarkus-dapr-devservices-daprd-image]] [.property-path]##link:#quarkus-dapr_quarkus-dapr-devservices-daprd-image[`quarkus.dapr.devservices.daprd-image`]##
3535
ifdef::add-copy-button-to-config-props[]

docs/modules/ROOT/pages/includes/quarkus-dapr_quarkus.dapr.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Environment variable: `+++QUARKUS_DAPR_DEVSERVICES_ENABLED+++`
2929
endif::add-copy-button-to-env-var[]
3030
--
3131
|boolean
32-
|
32+
|`true`
3333

3434
a|icon:lock[title=Fixed at build time] [[quarkus-dapr_quarkus-dapr-devservices-daprd-image]] [.property-path]##link:#quarkus-dapr_quarkus-dapr-devservices-daprd-image[`quarkus.dapr.devservices.daprd-image`]##
3535
ifdef::add-copy-button-to-config-props[]

runtime/src/main/java/io/quarkiverse/dapr/config/DaprDevServiceBuildTimeConfig.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ public interface DaprDevServiceBuildTimeConfig {
1919
*
2020
* @asciidoclet
2121
*/
22+
@WithDefault("true")
2223
Optional<Boolean> enabled();
2324

2425
/**

0 commit comments

Comments
 (0)