mirror of https://github.com/flutter/pinball.git
chore: connect app to firebase (#55)
* docs: changes missed in last PR * chore: connect to firebase * chore: hide firebase setup * refactor: revert ios changes * chore: update gitignorepull/56/head
parent
c0175b0d30
commit
bc5a2f343e
File diff suppressed because one or more lines are too long
@ -0,0 +1,11 @@
|
|||||||
|
if (typeof firebase === 'undefined') throw new Error('hosting/init-error: Firebase SDK not detected. You must include it before /__/firebase/init.js');
|
||||||
|
firebase.initializeApp({
|
||||||
|
"apiKey": "API_KEY",
|
||||||
|
"appId": "APP_ID",
|
||||||
|
"authDomain": "AUTH_DOMAIN",
|
||||||
|
"databaseURL": "",
|
||||||
|
"measurementId": "MEASUREMENT_ID",
|
||||||
|
"messagingSenderId": "MEASUREMENT_SENDER_ID",
|
||||||
|
"projectId": "PROJECT_ID",
|
||||||
|
"storageBucket": "STORAGE_BUCKET"
|
||||||
|
});
|
Loading…
Reference in new issue