-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathapp.config.yaml
38 lines (36 loc) · 1.29 KB
/
app.config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
application:
actions: actions
web: web-src
runtimeManifest:
packages:
commerce-cif-graphql-integration-reference:
license: Apache-2.0
actions:
dispatcher:
function: actions/local/dispatcher.js
web: 'yes'
runtime: 'nodejs:14'
inputs:
LOG_LEVEL: debug
use-aio-cache: false # number of seconds for caching; set to false or remove to disable caching
url: https://a-dummy-url.com
remoteSchemas: # Action with smaller order has "merge priority" in schema conflicts
cart:
order: 20
action: commerce-cif-graphql-integration-reference/cart
annotations:
provide-api-key: true
final: true
cart:
function: actions/remote/cartResolver.js
runtime: 'nodejs:14'
inputs:
LOG_LEVEL: info
# This deploys a GraphQL introspection endpoint that includes all the Magento types and fields
# used by the AEM/Magento integration.
cif-schema:
function: actions/documentation/introspection.js
runtime: 'nodejs:14'
web: 'yes'
annotations:
final: true