-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.config.yaml
More file actions
41 lines (41 loc) · 1.22 KB
/
app.config.yaml
File metadata and controls
41 lines (41 loc) · 1.22 KB
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
39
40
41
application:
hooks:
pre-app-build: ./hooks/check-action-types.sh && ./hooks/check-web-types.sh
actions: src/actions
web: src/web
runtimeManifest:
packages:
appbuilder:
license: Apache-2.0
actions:
api-sample:
function: src/actions/api-sample/index.ts
web: 'yes'
runtime: nodejs:22
inputs:
LOG_LEVEL: debug
BASE_URL: $BASE_URL
annotations:
require-adobe-auth: true
final: true
publish-event-sample:
function: src/actions/publish-event-sample/index.ts
web: 'yes'
runtime: nodejs:22
inputs:
LOG_LEVEL: debug
apiKey: $SERVICE_API_KEY
annotations:
require-adobe-auth: true
final: true
telemetry-example:
function: src/actions/telemetry-example/index.ts
web: 'yes'
runtime: nodejs:22
inputs:
LOG_LEVEL: debug
ENABLE_TELEMETRY: true
NEW_RELIC_LICENSE_KEY: $NEW_RELIC_LICENSE_KEY
annotations:
require-adobe-auth: false
final: true