You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The .env file at the root of a Quarkus project can contain environment variables that configures Quarkus and so can contain env var version of the properties.
For instance QUARKUS_MY_PROPERTY or _DEV_QUARKUS_MY_PROPERTY for something that is only enabled for the dev profile.
The rule is basically that any letter will be uppercased, numbers will be left alone and anything else will be transformed to _.
Note that while simple cases might be manageable, I'm not entirely sure how we will be able to handle regexps. We might be able to handle the most common cases (and make sure we catch errors if the transformed regexp is invalid).
One difficulty will be that my-property has to be changed to MY_PROPERTY but [a-z] shouldn't be affected. Also - can be used at the end of a class of characters and in this case, it is just a - that should be replaced.
The text was updated successfully, but these errors were encountered:
The
.env
file at the root of a Quarkus project can contain environment variables that configures Quarkus and so can contain env var version of the properties.For instance
QUARKUS_MY_PROPERTY
or_DEV_QUARKUS_MY_PROPERTY
for something that is only enabled for thedev
profile.The rule is basically that any letter will be uppercased, numbers will be left alone and anything else will be transformed to
_
.Note that while simple cases might be manageable, I'm not entirely sure how we will be able to handle regexps. We might be able to handle the most common cases (and make sure we catch errors if the transformed regexp is invalid).
One difficulty will be that
my-property
has to be changed toMY_PROPERTY
but[a-z]
shouldn't be affected. Also-
can be used at the end of a class of characters and in this case, it is just a-
that should be replaced.The text was updated successfully, but these errors were encountered: