Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

Cue the extraordinary. Show-stopping experiences that raise the digital bar. Apply now for the 2023 Adobe Experience Maker Awards.
SOLVED

Access to env file

Avatar

Community Advisor

is there an easy way to access the key/values from the env file within the app or within the actions? or do I need to install a node module that handles the env files?

1 Accepted Solution

Avatar

Correct answer by
Employee

Hi @Urs_Boller , the .env file is to defined the environment variables at build time. If you want to use them in the actions, you need to pass those variables to the actions via default parameters. To do the mapping, in manifest.yml, for each action there is an "inputs" section. You could simply map all the variables you want for the action there. For example: in .env you have `CAMPAIGN_TENANT="my-tenant"`, then in manifest add `campaignTenant: $CAMPAIGN_TENANT` to the respective action, finally in the action get it with `const tenant = params.campaignTenant`.

Reference docs: https://github.com/AdobeDocs/project-firefly/blob/master/getting_started/first_app.md#5-anatomy-of-a...

View solution in original post

2 Replies

Avatar

Correct answer by
Employee

Hi @Urs_Boller , the .env file is to defined the environment variables at build time. If you want to use them in the actions, you need to pass those variables to the actions via default parameters. To do the mapping, in manifest.yml, for each action there is an "inputs" section. You could simply map all the variables you want for the action there. For example: in .env you have `CAMPAIGN_TENANT="my-tenant"`, then in manifest add `campaignTenant: $CAMPAIGN_TENANT` to the respective action, finally in the action get it with `const tenant = params.campaignTenant`.

Reference docs: https://github.com/AdobeDocs/project-firefly/blob/master/getting_started/first_app.md#5-anatomy-of-a...

The ultimate experience is back.

Join us in Vegas to build skills, learn from the world's top brands, and be inspired.

Register Now