Skip to content

Commit 8eaf0cc

Browse files
authored
delete prod configuration
1 parent 060db03 commit 8eaf0cc

File tree

7 files changed

+19
-19
lines changed

7 files changed

+19
-19
lines changed

.github/workflows/test.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ jobs:
3030
- run: npm install
3131
- run: npm run bootstrap
3232
- run: npm run lint
33-
- run: npm run test
3433
- name: Run tests against emulator
3534
run: |
3635
npm install -g firebase-tools

examples/fish1/js/fish1.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
(function() {
22
// Initialize the Firebase SDK
3+
// TODO(DEVELOPER): Change the values below using values from the initialization snippet: Firebase Console > Overview > Add Firebase to your web app.
34
initializeApp({
4-
apiKey: "AIzaSyCR4ND2xwX3kU1IxTn0youF5OlI3x6MFZs",
5-
databaseURL: "https://geofire-gh-tests.firebaseio.com",
6-
projectId: "geofire-gh-tests"
5+
apiKey: "<YOUR_API_KEY>",
6+
databaseURL: "<YOUR_DB_URL>",
7+
projectId: "<YOUR_PROJECT_ID>"
78
});
89

910
// Generate a random Firebase location

examples/fish2/js/fish2.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
(function() {
22
// Initialize the Firebase SDK
33
initializeApp({
4-
apiKey: "sAIzaSyCR4ND2xwX3kU1IxTn0youF5OlI3x6MFZs",
5-
databaseURL: "https://geofire-gh-tests.firebaseio.com",
6-
projectId: "geofire-gh-tests"
4+
apiKey: "s<YOUR_API_KEY>",
5+
databaseURL: "<YOUR_DB_URL>",
6+
projectId: "<YOUR_PROJECT_ID>"
77
});
88

99
// Generate a random Firebase location

examples/fish3/js/fish3.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
(function() {
22
// Initialize the Firebase SDK
33
initializeApp({
4-
apiKey: "AIzaSyCR4ND2xwX3kU1IxTn0youF5OlI3x6MFZs",
5-
databaseURL: "https://geofire-gh-tests.firebaseio.com",
6-
projectId: "geofire-gh-tests"
4+
apiKey: "<YOUR_API_KEY>",
5+
databaseURL: "<YOUR_DB_URL>",
6+
projectId: "<YOUR_PROJECT_ID>"
77
});
88

99
// Generate a random Firebase location

examples/html5Geolocation/js/html5Geolocation.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
(function() {
22
// Initialize the Firebase SDK
33
initializeApp({
4-
apiKey: "AIzaSyCR4ND2xwX3kU1IxTn0youF5OlI3x6MFZs",
5-
databaseURL: "https://geofire-gh-tests.firebaseio.com",
6-
projectId: "geofire-gh-tests"
4+
apiKey: "<YOUR_API_KEY>",
5+
databaseURL: "<YOUR_DB_URL>",
6+
projectId: "<YOUR_PROJECT_ID>"
77
});
88

99
// Generate a random Firebase location

examples/queryBuilder/js/queryBuilder.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
(function() {
22
// Initialize the Firebase SDK
33
initializeApp({
4-
apiKey: "AIzaSyCR4ND2xwX3kU1IxTn0youF5OlI3x6MFZs",
5-
databaseURL: "https://geofire-gh-tests.firebaseio.com",
6-
projectId: "geofire-gh-tests"
4+
apiKey: "<YOUR_API_KEY>",
5+
databaseURL: "<YOUR_DB_URL>",
6+
projectId: "<YOUR_PROJECT_ID>"
77
});
88

99
// Generate a random Firebase location

packages/geofire/test/common.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ export let geoFireRef: DatabaseReference,
2929

3030
// Initialize Firebase
3131
const config = {
32-
apiKey: 'AIzaSyCR4ND2xwX3kU1IxTn0youF5OlI3x6MFZs',
33-
databaseURL: 'https://geofire-gh-tests.firebaseio.com',
34-
projectId: 'geofire-gh-tests'
32+
apiKey: '<YOUR_API_KEY>',
33+
databaseURL: '<YOUR_DB_URL>',
34+
projectId: '<YOUR_PROJECT_ID>'
3535
};
3636
initializeApp(config);
3737

0 commit comments

Comments
 (0)