FAQ's (Frequently Asked Questions)

1. How to add Firebase configuration?

Open /src/environments/environment.ts and add your Firebase configuration:

environment.ts
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.

  1. Create an account on Algoliaarrow-up-right.

  2. After Signup you are get the 14 days trial and also you can update the plans. Reference Link : https://www.algolia.com/pricingarrow-up-right

  3. Add your products fields with values under the Index.

  4. 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.htmlarrow-up-right

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_4217arrow-up-right

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:-

  1. Go to the src -> app -> Core -> menu -> menu-items folder and open the menu-items.ts file.

  2. Add new object in the HeaderOneItems For example

5. How I can disable the FIREBASE?

Follow these instructions to disable the firebase:-

  1. 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.

circle-info

Note:

For understanding and using firebase json data structure(format ) please go to the following path.

src -> assets -> data -> firebase.json

Last updated