Files
karyaman-project/bookoomoo-app
karyamanswasta 4fe4b13f39 chore(adventure-rental-app): strip down application and remove obsolete files
This commit performs a major cleanup of the `adventure-rental-app` by removing all existing components, pages, layouts, and project brief documents. The application is reduced to a minimal Vite shell.

- Deleted all authentication, chatbot, and dashboard components and pages.
- Removed outdated project brief and PRD markdown files.
- Updated Vite and `@vitejs/plugin-react` dependencies.

Additionally, the `framer-motion` dependency was added to the `bookoomoo-app`.
2025-08-10 10:27:39 +07:00
..

Bookoomoo App

Dev server setup (Vite + React + Tailwind).

Prerequisites

  • Node.js 18+
  • npm 9+

Local env

  • Copy .env.example to .env and set VITE_N8N_BASE_URL if you have an n8n backend.

Install dependencies

# From repo root (monorepo workspaces)
npm install

Run dev server

# From repo root
npm run dev:bookoomoo
# Or inside the app folder
cd bookoomoo-app && npm run dev

Build

# From repo root
npm run build:bookoomoo
# Or inside the app folder
cd bookoomoo-app && npm run build