Init Firebase config
This commit is contained in:
parent
5f0b10eed7
commit
fb83703c54
@ -4,15 +4,22 @@ import { NgModule } from '@angular/core';
|
||||
import { AppComponent } from './app.component';
|
||||
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
||||
|
||||
import { AngularFireModule } from '@angular/fire';
|
||||
import { AngularFireDatabaseModule } from '@angular/fire/database';
|
||||
import { environment } from '@env/environment';
|
||||
|
||||
@NgModule({
|
||||
declarations: [
|
||||
AppComponent
|
||||
],
|
||||
imports: [
|
||||
BrowserModule,
|
||||
BrowserAnimationsModule
|
||||
BrowserAnimationsModule,
|
||||
AngularFireModule.initializeApp(environment.firebaseConfig),
|
||||
AngularFireDatabaseModule,
|
||||
],
|
||||
providers: [],
|
||||
bootstrap: [ AppComponent ]
|
||||
})
|
||||
export class AppModule { }
|
||||
export class AppModule {
|
||||
}
|
||||
|
@ -1,3 +1,12 @@
|
||||
export const environment = {
|
||||
production: true
|
||||
production: true,
|
||||
firebaseConfig: {
|
||||
apiKey: 'AIzaSyDe48emSyoXS3WV6vM4GjYiJwdcMhcspqY',
|
||||
authDomain: 'disco-trip.firebaseapp.com',
|
||||
databaseURL: 'https://disco-trip.firebaseio.com',
|
||||
projectId: 'disco-trip',
|
||||
storageBucket: 'disco-trip.appspot.com',
|
||||
messagingSenderId: '113728943338',
|
||||
appId: '1:113728943338:web:366dabcdff057858'
|
||||
},
|
||||
};
|
||||
|
@ -3,7 +3,16 @@
|
||||
// The list of file replacements can be found in `angular.json`.
|
||||
|
||||
export const environment = {
|
||||
production: false
|
||||
production: false,
|
||||
firebaseConfig: {
|
||||
apiKey: 'AIzaSyDe48emSyoXS3WV6vM4GjYiJwdcMhcspqY',
|
||||
authDomain: 'disco-trip.firebaseapp.com',
|
||||
databaseURL: 'https://disco-trip.firebaseio.com',
|
||||
projectId: 'disco-trip',
|
||||
storageBucket: 'disco-trip.appspot.com',
|
||||
messagingSenderId: '113728943338',
|
||||
appId: '1:113728943338:web:366dabcdff057858'
|
||||
},
|
||||
};
|
||||
|
||||
/*
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"compileOnSave": false,
|
||||
"compilerOptions": {
|
||||
"baseUrl": "./",
|
||||
"baseUrl": "src",
|
||||
"outDir": "./dist/out-tsc",
|
||||
"sourceMap": true,
|
||||
"declaration": false,
|
||||
@ -11,6 +11,7 @@
|
||||
"experimentalDecorators": true,
|
||||
"importHelpers": true,
|
||||
"target": "es5",
|
||||
"resolveJsonModule": true,
|
||||
"paths": {
|
||||
"@app/*": [
|
||||
"app/*"
|
||||
|
Loading…
Reference in New Issue
Block a user