This is the front-end of a full stack e-commerce application.
You can check here the back-end APIs used by this front-end and hosted on AWS.
Check the demo hosted on Vercel https://kvey-store.vercel.app.
First clone this repository.
$ git clone https://github.com/kiervz/ecommerce-react-typescript.git
Change Directory into this project.
$ cd ./kvey-store
Install dependencies. Make sure you already have nodejs
& npm
installed in your system.
$ npm install # or yarn
Create a copy of .env file.
$ cp .env.example .env
Add the back-end URL and Stripe publishable key. Create a Stripe account here: https://stripe.com
$ REACT_APP_BE_BASE_URL=
$ REACT_APP_STRIPE_PUBLISHABLE_KEY=
Run it
$ npm run dev # or yarn run dev