Skip to content

1andDone/Taste-This

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Taste This

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.

Your guide to the most recommended dishes.

Technology Stack and Features

  • Backend:
    • Bun for the JavaScript/TypeScript runtime.
      • Hono for the web framework.
      • Zod for data validation.
      • OpenAPI for API documentation.
  • Frontend:
  • AI Integration:

Preview

Taste This Preview

Project Structure

.
├── 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

Setup Instructions

Backend Setup

  1. Set up environment variables in backend/.env (you can copy from .env.example):

  2. Navigate to the backend directory:

cd backend
  1. Install dependencies:
bun install
  1. Start the development server:
bun dev

The backend server will be available at the configured port.

Frontend Setup

  1. Navigate to the backend directory:
cd frontend
  1. Install dependencies:
pnpm install
  1. Set up environment variables:

    • Copy .env.example to .env.local
    • Update the variables as needed
  2. Start the development server:

pnpm run dev
  1. The application will be available at http://localhost:5173

Contributing

  1. Fork the repository
  2. Create a new branch for your feature
  3. Commit your changes
  4. Push to your branch
  5. Create a Pull Request

Acknowledgements

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 77.7%
  • JavaScript 20.5%
  • Other 1.8%