According to the Firebase documentation , the environment settings can be set by running the command:
firebase functions:config:set someservice.key="THE API KEY" someservice.id="THE CLIENT ID"
However, I am wondering if there is a way to import the environment configuration from a file, for example. from the JSON file configs.json:
firebase functions:config:set configs.json
source
share