Last active
November 27, 2018 11:10
-
-
Save jthegedus/92af42f47091f4999e5c60d4a93516ee to your computer and use it in GitHub Desktop.
Folder Structure for https://github.com/jthegedus/firebase-gcp-examples/tree/master/firebase-cloud_functions-compiled_code example
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
+- dist/ # compiled code | |
| | | |
| +- index.js # CF entrypoint, defined by pkg.json "main" field | |
| +- index.js.map # maps compiled to raw source in ../src/ | |
+- node_modules/ # ignored by firebase-tools on upload | |
+- src/ # raw source code to compile | |
| | | |
| +- index.<ext> # entrypoint to compile | |
+- <config file> # config file depending on the tool | |
+- .firebaserc # firebase project identification config | |
+- firebase.json # folder to deploy (this folder) | |
+- package.json # deps, entrypoint (main field) & npm scripts |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment