Installation
Get the code from our open source repository
git clone https://github.com/summit-webapp/summit
After repository is cloned you may have to install the dependencies by running the following command.
npm install
Theme Installation
In our source code repository you will find "themes" folder.
Inside themes folder take a clone from themes repository(master branch) to get all the react components for your application.
git clone https://github.com/summit-webapp-themes/demo-theme
Now you have theme with you, but you need to install it in your application.
To install theme to your application run the following command.
/bin/bash install-theme.sh
Learn more about Themes
After installing the Theme for your application, you need to configure the base-url for your api end points. Create .env file and add URL of your backend application.
NEXT_PUBLIC_API_URL='<your_backend_url>'.
Once you have completed all the steps, That's it!
Now run the command
npm run dev
Your E-Commerce Application is ready!