File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
appengine/standard/firebase/firenotes/frontend Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -19,15 +19,19 @@ $(function(){
19
19
// backend's app.yaml file.
20
20
var backendHostUrl = '<your-backend-url>' ;
21
21
22
+ // [START gae_firenotes_config]
23
+ // Obtain the following from the "Add Firebase to your web app" dialogue
22
24
// Initialize Firebase
23
- // TODO: Replace with your project's customized code snippet
24
25
var config = {
25
26
apiKey : "<API_KEY>" ,
26
27
authDomain : "<PROJECT_ID>.firebaseapp.com" ,
27
28
databaseURL : "https://<DATABASE_NAME>.firebaseio.com" ,
29
+ projectId : "<PROJECT_ID>" ,
28
30
storageBucket : "<BUCKET>.appspot.com" ,
31
+ messagingSenderId : "<MESSAGING_SENDER_ID>"
29
32
} ;
30
-
33
+ // [END gae_firenotes_config]
34
+
31
35
// This is passed into the backend to authenticate the user.
32
36
var userIdToken = null ;
33
37
You can’t perform that action at this time.
0 commit comments