This repository has been archived by the owner on Oct 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make Firebase project configurable, and straighten out extension mess…
…age-passing (#122) * spell out how to set up and use multiple Firebase environments * remove screenshots dirs * ignore screenshots except for README * ignore local firebase cache * rename web config and put it in ./config subdir * firebase should be dev dependency, not peer * rename config to something more specific * must use import type if importsNotUsedAsValues is set to error in tsconfig * load firebase config at runtime * copy firebase web config based on current in-use firebase project name * move firebase to gitignore * configure CircleCI to override firebase per-project setting * upgrade to latest firebase-functions package * configure functions host in firebase web config file * info log on every account creation * get project name from environment for load:data target, and make sure the dev target configures for firebase * put rally site const with others * add proper build support for test extension, make sure to copy content script in * add package command to generate test extensions * wait for rally-sdk to send request before generating and sending back token * only send web-check after logging in, and handle missing attached update to study enrollment * build test extension instead of having to chck in assets * capture failure from firebase use * use demo-rally for emulator, so firebase does not attempt to connect to live resources * use demo- prefix for dev and integration test mode, per https://firebase.google.com/docs/emulator-suite/connect_firestore#choose_a_firebase_project * bump pinned sdk version * explain how to build without being logged in * prefix message types with rally-sdk, and warn not throw for unrecognized message types * keep the chrome extension version test working even though it's temporarily disabled * typo * upgrade test extension to latest rally-sdk * bump rally SDK version * point to latest official Rally SDK
- Loading branch information
Showing
40 changed files
with
30,968 additions
and
2,019 deletions.
There are no files selected for viewing
This file contains 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
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"apiKey": "abc123", | ||
"authDomain": "demo-rally.firebaseapp.com", | ||
"projectId": "demo-rally", | ||
"storageBucket": "demo-rally.appspot.com", | ||
"messagingSenderId": "abc123", | ||
"appId": "1:123:web:abc123", | ||
"functionsHost": "http://localhost:5001" | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"apiKey": "AIzaSyAJv0aTJMCbG_e6FJZzc6hSzri9qDCmvoo", | ||
"authDomain": "rally-web-spike.firebaseapp.com", | ||
"projectId": "rally-web-spike", | ||
"storageBucket": "rally-web-spike.appspot.com", | ||
"messagingSenderId": "85993993890", | ||
"appId": "1:85993993890:web:b975ff99733d2d8b50c9fb", | ||
"functionsHost": "https://us-central1-rally-web-spike.cloudfunctions.net" | ||
} |
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
This file contains 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
Oops, something went wrong.