Skip to content

Instantly share code, notes, and snippets.

@flatfisher
Created June 18, 2018 12:08
Show Gist options
  • Save flatfisher/8d94643d1b7db900e41c2e91e7c384a1 to your computer and use it in GitHub Desktop.
Save flatfisher/8d94643d1b7db900e41c2e91e7c384a1 to your computer and use it in GitHub Desktop.
Firebase functions 環境変数を取得
import * as functions from 'firebase-functions';
export const helloWorld = functions.https.onRequest((request, response) => {
const key = `${functions.config().api.key}`
const urls = `${functions.config().api.urls}`
response.send("Hello from Firebase!");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment