Web app setup

It gives detailed information about the web app setup.

How to run the Readymade Grocery Web app

In Above Screenshot you can find the grocery-cms-dashboard folder, open the folder to run the CMS dashboard.

ADD CREDENTIAL TO PROJECT

Generally, for every application, there will be two environments i.e Development and Production. Similarly, environments folder will have three files to store development, testing and production environment configurations. environment.ts contains the development environment configuration, environment.test.ts contains testing environment configuration environment.prod.ts contains the production environment configuration.

UPDATE API URL TO CMS DASHBOARD. You need to change the value of the API endpoint in the file

src/environments/environment.ts

apiEndPoint: the value must be your deployed API URL.

Open the Terminal and navigate to the project foldergrocery-cms--dashboardand install NodeJS dependencies. Please make sure you have node, npm, and angular-cli installed before running the below command:

$ npm install

Once the packages get installed you may run the application by running the command below and you can see the app is running on your browser.

$ ng serve

PRODUCTION RELEASE

You need to change the value of API endpoint in file src/environments/environment.prod.ts To build an app for production:

$ ng build --prod

The above command will create a dist directory that you can deploy on any Hosting. If there is any issue please google it or if you don't find any solution please feel free to report us, we will look into it.

Last updated