FAQ's (Frequently Asked Questions)
1. How to add Firebase configuration?
Open /src/environments/environment.ts and add your Firebase configuration:
export const environment = {
production: false,
firebase: {
apiKey: '<your-key>',
authDomain: '<your-project-authdomain>',
databaseURL: '<your-database-URL>',
projectId: '<your-project-id>',
storageBucket: '<your-storage-bucket>',
messagingSenderId: '<your-messaging-sender-id>'
}
};2. Getting started with Algolia Registration and process.
Algolia is a hosted full-text, numerical, and faceted search engine capable of delivering real-time results from the first keystroke.
Create an account on Algolia.
After Signup you are get the 14 days trial and also you can update the plans. Reference Link : https://www.algolia.com/pricing
Create an Index on Algolia Dashboard. Reference Link :- https://www.algolia.com/doc/guides/indexing/indexing-overview/#indexing-via-the-dashboard
Add your products fields with values under the Index.
Use the Algolia api key on your app and get the result. Go to the src -> app -> pages -> Products -> ProductsList folder and open the ProductsList.component.html file.
Reference Like : https://community.algolia.com/angular-instantsearch/getting-started.html
3. How to add more Currency in Embryo?
Go to the src -> app -> Global -> CurrencyDropDown folder and open the CurrencyDropDown.component.ts file.
For example add a France currency. Add a object under the currencyArray like this :
Get the currency code for this URL :- https://en.wikipedia.org/wiki/ISO_4217
Add a default currency in Embryo.
Go to the src -> app -> Services folder and open Embryo.service.ts file.
4. How to add new menu in header and responsive sidebar follow these steps:-
Go to the src -> app -> Core -> menu -> menu-items folder and open the menu-items.ts file.
Add new object in the HeaderOneItems For example
5. How I can disable the FIREBASE?
Follow these instructions to disable the firebase:-
Remove the firebase from the configuration src -> environments -> environment.ts

2. Remove the firebase code from module src -> app -> app.module.ts.


3. Go to the src -> app -> Services -> Embryo.service.ts. and remove firebase function and database from the file.
Last updated