This is a starter template for Ionic projects.
This template does not work on its own. The shared files for each starter are found in the ionic2-app-base repo.
To use this template, either create a new ionic project using the ionic node.js utility, or copy the files from this repository into the Starter App Base.
Take the name after ionic2-starter-
, and that is the name of the template to be used when using the ionic start
command below:
$ sudo npm install -g ionic cordova
$ ionic start mySideMenu sidemenu
Then, to run it, cd into mySideMenu
and run:
$ ionic cordova platform add ios
$ ionic cordova run ios
Substitute ios for android if not on a Mac.
Firebase Configuration:
- Create new project
- add angular fire2 library by -> npm install firebase angularfire2 --save
- then write the following code in module.ts file
// Import the AF2 Module import { AngularFireModule } from 'angularfire2'; import { AngularFireAuthModule } from 'angularfire2/auth'; import { AngularFireDatabaseModule } from 'angularfire2/database';
// AF2 Settings export const firebaseConfig = { apiKey: "", authDomain: "", databaseURL: "", storageBucket: "", messagingSenderId: "" }; //get this by creating new project in firebase and copy its web app settings
add this is imports array in module.ts
AngularFireModule.initializeApp(firebaseConfig),
AngularFireAuthModule,
AngularFireDatabaseModule
<—————— all for firebase setup——————->
Authentication with firebase :
- open project you created on fcm and go to its authentication tab.
- In authentication tab, enable lignin-method