Horje
store env file in firebase functions Code Example
store env file in firebase functions
$ cd project_directory
$ cd functions
$ firebase functions:config:set api_key1="YOUR_API_KEY1" api_key2="YOUR_API_KEY2"

// Accessing the Keys in Code

const functions = require('firebase-functions');

const api_key1  = functions.config().api_key1;
const api_key2  = functions.config().api_key2;
Source: dev.to




Shell

Related
powershell get all files in directory recursively Code Example powershell get all files in directory recursively Code Example
how to create a junction between folders Code Example how to create a junction between folders Code Example
kumaran km github Code Example kumaran km github Code Example
initialize nx Code Example initialize nx Code Example
linux apt pcap Code Example linux apt pcap Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
18