Firebase cloud features: import environment configurations from a file?

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
+4
source share

Source: https://habr.com/ru/post/1681436/


All Articles