A hotel discovery + booking app built with React + Vite + Tailwind, backed by Neon Postgres via Prisma.
- Explore & search hotels with filters and sorting
- Hotel detail pages with rooms and reviews
- Checkout flow that stores bookings in Postgres
- Bookings management (cancel supported)
- Wishlist (saved hotels) synced to the database
- Sign-in / sign-up with database-backed accounts
https://stay-bee-alpha.vercel.app/
Home screen on web and Android:
npm install
npm run prisma:generate
npm run devCreate a local .env file from .env.example and add your Neon connection strings before running database features.
To create the tables in Neon:
npm run prisma:pushnpm run build
npm run preview- Push this repo to GitHub.
- In Vercel, import the GitHub repository.
- Framework preset: Vite
- Build command:
npm run build - Output directory:
dist - Add
POSTGRES_PRISMA_URLandPOSTGRES_URL_NON_POOLINGto the project environment variables.
Client-side routing is handled via vercel.json, while the api directory contains the serverless database endpoints.

