No more wondering what to order!
https://taste-this.com find the most popular dishes at restaurants. By analyzing customer reviews, we identify the most recommended dishes, their ratings, and what people are saying about them.
- Backend:
- Frontend:
- React with TypeScript, hooks, and Vite for a modern frontend stack.
- Chakra UI for UI components.
- TanStack Router for routing.
- TanStack Query for data fetching.
- Generated client for consuming the backend API.
- React with TypeScript, hooks, and Vite for a modern frontend stack.
- AI Integration:
- Google Generative AI integration.
.
├── backend/
│ ├── src/
│ │ ├── api/ # API endpoints
│ │ ├── core/ # Core configurations
│ │ ├── scraper/ # Data scraping functionality
│ │ ├── utils/ # Utility functions
│ │ └── main.js # Application entry point
└── frontend/
├── src/
│ ├── assets/ # Static assets
│ ├── client/ # Generated API client
│ ├── components/ # Reusable UI components
│ ├── config/ # Configuration files
│ ├── routes/ # Application routes
│ ├── services/ # Service layer
│ └── types/ # TypeScript type definitions
└── public/ # Static assets
-
Set up environment variables in
backend/.env
(you can copy from.env.example
): -
Navigate to the backend directory:
cd backend
- Install dependencies:
bun install
- Start the development server:
bun dev
The backend server will be available at the configured port.
- Navigate to the backend directory:
cd frontend
- Install dependencies:
pnpm install
-
Set up environment variables:
- Copy
.env.example
to.env.local
- Update the variables as needed
- Copy
-
Start the development server:
pnpm run dev
- The application will be available at
http://localhost:5173
- Fork the repository
- Create a new branch for your feature
- Commit your changes
- Push to your branch
- Create a Pull Request
- YasogaN/google-maps-review-scrape - Used as scraper implementation in this project.