Profile

Profile #

The profile acts as a namespace, allowing you to define multiple profiles in one file.

Create a profile #

The name needs to be defined at the root level of the application.yaml, quoted and prefixed with % e.g. "%my-profile.

After the name, the universalid namespace contains the application’s configurable components.

Example:

"%custom":
  universalid:

Multiple profiles #

You can also define multiple profiles:

"%custom":
  universalid:

"%custom2":
  universalid:

After the universalid namespace you can continue to configure the application’s components such as e.g. log level:

"%custom":
  universalid:
    # Logger
    log:
      category:
        "io.akskunkworks.universalid":
          level: DEBUG