Skip to content

Commit

Permalink
remove obsolete api key
Browse files Browse the repository at this point in the history
  • Loading branch information
jcharra committed Oct 3, 2024
1 parent 57045ed commit c7bc321
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion src/app/services/weather.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ import { isSameDay, startOfDay } from "date-fns";
import { Observable, of } from "rxjs";
import { map, tap } from "rxjs/operators";

const API_KEY = "09b7c89a1945dc1168a4d50a97ffd24d";
// insert your own key here to retrieve weather forecast information
const API_KEY = "MY_OPENWEATHER_API_KEY";

export enum WeatherType {
CLEAR = "Clear",
Expand Down
8 changes: 4 additions & 4 deletions src/environments/environment.prod.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
export const environment = {
production: true,
FIREBASE_API_KEY: 'AIzaSyAkR5GQNnOnd2KLkErMUyiMRXrKgYFHLj0',
FIREBASE_API_KEY: "AIzaSyAkR5GQNnOnd2KLkErMUyiMRXrKgYFHLj0",
firebaseConfig: {
apiKey: "AIzaSyAkR5GQNnOnd2KLkErMUyiMRXrKgYFHLj0",
authDomain: "beetracker-6865b.firebaseapp.com",
databaseURL: "https://beetracker-6865b.firebaseio.com",
projectId: "beetracker-6865b",
storageBucket: "beetracker-6865b.appspot.com",
messagingSenderId: "1066559344872",
appId: "1:1066559344872:web:7619134c1c165709"
}
};
appId: "1:1066559344872:web:7619134c1c165709",
},
};

0 comments on commit c7bc321

Please sign in to comment.