Skip to content

Move link to console to configuration step #1509

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 18, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions docs/install-and-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Now that you have a new project setup, install AngularFire and Firebase from npm

### 4. Add Firebase config to environments variable

Open `/src/environments/environment.ts` and add your Firebase configuration:
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**.

```ts
export const environment = {
Expand All @@ -58,8 +58,6 @@ export const environment = {

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

This can be found in your project at [the Firebase Console](https://console.firebase.google.com):

```ts
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
Expand Down