@5odin wrote:
I need to add an other database to my existing one in my angular 4 project. I'm using angularfire 2. I have an envirement.ts file that contains my firebase config file(API key, authDomain ...) this is a part of my app.module.ts :
import { AngularFireModule } from 'angularfire2';
import { firebaseConfig } from '../environment';
import { AngularFireDatabaseModule } from 'angularfire2/database';@NgModule({
declarations: [
MyApp
],
imports: [
BrowserModule,
IonicModule.forRoot(MyApp),
AngularFireModule.initializeApp(firebaseConfig),
AngularFireDatabaseModule,
...How can I add an independent database to my app?
Posts: 1
Participants: 1