Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ npm install -g @adobe/aio-cli

### Deploy and Onboard the Starter Kit

1. Copy the `.env.dist` to a new `.env` file.
1. Copy the `env.dist` to a new `.env` file.
2. Run the following commands to connect your starter kit with the App Builder project configured above.

```sh
Expand Down Expand Up @@ -442,7 +442,6 @@ You can generate this file using the command `aio app use`.
#### Action Dependencies

- You have two options to resolve your actions' dependencies:

1. **Packaged action file**: Add your action's dependencies to the root `package.json` and install them using
`npm install`. Then set the `function` field in `app.config.yaml` to point to the **entry file** of your action
folder. We will use `webpack` to package your code and dependencies into a single minified js file. The action will
Expand Down
6 changes: 1 addition & 5 deletions app.config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ application:
$include: ./actions/inputs.yaml
actions:
$include: ./actions/delta/external/actions.config.yaml
# Uncomment the following to run the delta-backoffice action on a schedule (ie. every hour)
# triggers:
# everyMin:
# feed: /whisk.system/alarms/interval
Expand Down Expand Up @@ -61,8 +62,3 @@ application:
$include: ./actions/inputs.yaml
actions:
$include: ./actions/price-book/external/actions.config.yaml

productDependencies:
- code: COMMC
minVersion: 2.4.4
maxVersion: 3.0.0
14 changes: 14 additions & 0 deletions .env.dist → env.dist
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,17 @@ TELEMETRY_ENABLE=
NGROK_URL=

IO_MANAGEMENT_BASE_URL=https://api.adobe.io/events/

# Inserted by AIO CLI

## Adobe I/O Runtime credentials
AIO_runtime_auth=
AIO_runtime_namespace=
AIO_runtime_apihost=

AIO_ims_contexts_Credential__in__ACO__SFCC__Starter__Kit__-__Stage_client__id=
AIO_ims_contexts_Credential__in__ACO__SFCC__Starter__Kit__-__Stage_client__secrets=
AIO_ims_contexts_Credential__in__ACO__SFCC__Starter__Kit__-__Stage_technical__account__email=
AIO_ims_contexts_Credential__in__ACO__SFCC__Starter__Kit__-__Stage_technical__account__id=
AIO_ims_contexts_Credential__in__ACO__SFCC__Starter__Kit__-__Stage_scopes=
AIO_ims_contexts_Credential__in__ACO__SFCC__Starter__Kit__-__Stage_ims__org__id=
Loading