PROJECT NAME - Motion-Predict
This project is built using:
- Vite
- TypeScript
- React
- shadcn/ui
- Tailwind CSS
- Node.js (recommend using nvm to manage versions)
- npm (installed with Node.js)
-
Clone the repository: git clone <YOUR_GIT_URL>
-
Change into the project directory: cd <YOUR_PROJECT_NAME>
-
Install dependencies: npm install
-
Start the development server: npm run dev
- npm run dev — start development server
- npm run build — build for production (outputs to
dist/) - npm run preview — serve the production build locally
-
Build the project: npm run build
-
Deploy the contents of the
dist/folder using any static-hosting service:- Vercel
- Netlify
- GitHub Pages
- Your own server
<YOUR_PROJECT_NAME>/ ├── public/ Static files ├── src/ Source code │ ├── components/ Reusable UI components │ ├── pages/ Route-based pages │ └── main.tsx Application entry point ├── index.html Main HTML template ├── package.json Dependencies and scripts ├── tailwind.config.ts Tailwind CSS configuration └── vite.config.ts Vite configuration