A lightweight React project bootstrapped with Vite and TypeScript. It provides a clean starting point for displaying and exploring different coffee flavours, making it ideal for learning modern frontend tooling or building small single-page applications.
- Framework: React + TypeScript
- Builder: Vite for fast cold starts and HMR
- Styling: Simple CSS (see
src/index.css) - Entry point:
src/App.tsxrenders the main UI - Data:
metadata.jsoncan hold flavour information or other static config
This template focuses on clarity and ease of extension — add components, routes or state management as needed.
-
Clone
git clone https://github.com/augustdev290/coffee-flavours-website.git cd coffee-flavours-website -
Install dependencies
npm install # or yarn install -
Start development server
npm run dev # visit http://localhost:5173 in your browser -
Build for production
npm run build
-
Preview build
npm run preview
Tip: use
npm run devwhile editing to get instant updates with Vite's HMR.
| Command | Description |
|---|---|
npm run dev |
Start local dev server |
npm run build |
Bundle for production |
npm run preview |
Preview the production bundle locally |
- Edit
src/App.tsxto modify the core application logic. - Add or update
metadata.jsonto configure flavours or other static data. - Customize
vite.config.tsfor advanced build settings.
This project is open‑source. Choose a license such as MIT below or update as needed.
Built with ❤️ by [augustdev290]