Skip to content

Commit ad1df54

Browse files
Merge pull request #28 from angular/master
Update upstream
2 parents 6863447 + 74208a9 commit ad1df54

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

docs/install-and-setup.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Now that you have a new project setup, install AngularFire and Firebase from npm
3838

3939
### 4. Add Firebase config to environments variable
4040

41-
Open `/src/environments/environment.ts` and add your Firebase configuration:
41+
Open `/src/environments/environment.ts` and add your Firebase configuration. You can find your project configuration in [the Firebase Console](https://console.firebase.google.com). From the project overview page, click **Add Firebase to your web app**.
4242

4343
```ts
4444
export const environment = {
@@ -58,8 +58,6 @@ export const environment = {
5858

5959
Open `/src/app/app.module.ts`, inject the Firebase providers, and specify your Firebase configuration.
6060

61-
This can be found in your project at [the Firebase Console](https://console.firebase.google.com):
62-
6361
```ts
6462
import { BrowserModule } from '@angular/platform-browser';
6563
import { NgModule } from '@angular/core';

docs/storage/storage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ export class AppComponent {
124124
profileUrl: Observable<string | null>;
125125
constructor(private storage: AngularFireStorage) {
126126
const ref = this.storage.ref('users/davideast.jpg');
127-
this.profileUrl = ref.getDownloadUrl();
127+
this.profileUrl = ref.getDownloadURL();
128128
}
129129
}
130130
```

0 commit comments

Comments
 (0)