A web-app made for Build for Bharat Hackathon
This web-app showcases a method to digitize and enhance the process of creating a ecommerce catalog for sellers. It uses AI to get user's voice input and fill up product details.
- React JS
- Express JS
- Open AI
-
Get API key from Open AI
-
Clone the repo
git clone https://github.com/nullsploit01/catalog-digitization.git
-
Setup API Server
- Install dependencies
cd catalog-digitization npm install
- Create a
.env.local
file at root of project and add values for following keys
OPENAI_shAPI_KEY=YOUR_API_KEY ALLOWED_ORIGIN=UI_URL
- Start API server
npm run dev
-
Setup UI Server
- Install dependencies
cd ui npm install npm run dev
- Create a
.env.local
file in ui folder and add values for following keys
VITE_API_URL=API_URL
- Start UI server
npm run dev