flamingo.me/flamingo-commerce/v3@v3.11.0/test/integrationtest/projecttest/config/config.yml (about)

     1  # Flamingo framework related configurations:
     2  core:
     3    zap.loglevel: Warn
     4    auth:
     5      web:
     6        debugController: true
     7        broker:
     8          -
     9            broker: "fake"
    10            typ: "fake"
    11            userConfig:
    12              username:
    13                password: "password"
    14            validatePassword: true
    15            usernameFieldId: "username"
    16            passwordFieldId: "password"
    17  
    18  flamingo:
    19    systemendpoint:
    20      serviceAddr: ":0"
    21    debug:
    22      mode: false
    23    router:
    24      path: /en
    25    prefixrouter:
    26      rootRedirectHandler:
    27        enabled: true
    28        redirectTarget: "/en/"
    29    session:
    30      cookie:
    31        secure: false
    32      backend: memory
    33      saveMode: "OnWrite"
    34    opencensus:
    35      jaeger:
    36        enable: true
    37        serviceAddr: ":10000"
    38  
    39  graphql:
    40    introspectionEnabled: true
    41  
    42  # Configs for flamingo-commerce modules
    43  commerce:
    44    order:
    45      useFakeAdapter: true
    46    payment:
    47      # Include the basic payment gateway adapter that provides "offline" payment methods
    48      enableOfflinePaymentGateway: true
    49    pagination:
    50      showFirstPage: false
    51      showLastPage: false
    52      defaultPageSize: 8
    53      showAroundActivePageAmount: 2
    54    cart:
    55      personalDataForm:
    56        additionalFormFields:
    57          - "place-order-error"
    58          - "reserve-order-id-error"
    59      defaultDeliveryCode: "delivery"
    60      enableCartCache: false
    61      defaultCartAdapter:
    62        enabled: true
    63        defaultTaxRate: 19
    64      emailAdapter:
    65        emailAddress: "test@test.de"
    66      placeOrderLogger:
    67        enabled: false
    68    checkout:
    69      showEmptyCartPageIfNoItems: true
    70      usePersonalDataForm: true
    71    product:
    72      fakeservice:
    73        enabled: true
    74        jsonTestDataFolder: "graphql/testdata/products"
    75  
    76      priceIsGross: true
    77    customer:
    78      useNilCustomerAdapter: false
    79    category:
    80      useCategoryFixedAdapter: true
    81      categoryServiceFixed:
    82        tree:
    83          electronics:
    84            code: pc_laptops
    85            name: Electronics
    86            sort: 1
    87            childs:
    88              flat-screen_tvs:
    89                code: flat-screen_tvs
    90                name: Flat Screens & TV
    91              headphones:
    92                code: headphones
    93                name: Headphones
    94                childs:
    95                  headphone_accessories:
    96                    code: headphone_accessories
    97                    name: Accessories
    98              tablets:
    99                code: tablets
   100                name: Tablets
   101          clothing:
   102            code: clothing
   103            name: Clothes & Fashion
   104            sort: 2