Created
April 10, 2019 07:14
-
-
Save piuccio/6e7d4c2fd86519c266188c60bfabd5d5 to your computer and use it in GitHub Desktop.
Initialaze a Firebase project for Apollo server
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"projects": { | |
"default": "the-id-of-your-project" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"functions": { | |
"source": "." | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"main": "./firebase-functions.js", | |
"scripts": { | |
"functions": "firebase serve --only functions", | |
"deploy": "firebase deploy --only functions" | |
}, | |
"engines": { | |
"node": "8" | |
}, | |
"dependencies": { | |
"firebase-admin": "7.2.0", | |
"firebase-functions": "2.2.1" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment