mirror of
https://github.com/tiennm99/try-claudekit.git
synced 2026-04-17 15:21:21 +00:00
Move tech stack, getting started, and gameplay sections into docs/ folder. Slim README down to a landing page with links.
26 lines
538 B
Markdown
26 lines
538 B
Markdown
# Getting Started
|
|
|
|
## Prerequisites
|
|
|
|
- [Node.js](https://nodejs.org/) (LTS recommended)
|
|
- npm (comes with Node.js)
|
|
|
|
## Setup
|
|
|
|
```bash
|
|
npm install
|
|
npm run dev
|
|
```
|
|
|
|
Open the URL shown in the terminal (default: http://localhost:5173).
|
|
|
|
## Scripts
|
|
|
|
| Command | Description |
|
|
|---------|-------------|
|
|
| `npm run dev` | Start Vite dev server with HMR |
|
|
| `npm run build` | Production build to `dist/` |
|
|
| `npm run preview` | Preview the production build |
|
|
| `npm test` | Run all tests once |
|
|
| `npm run test:watch` | Run tests in watch mode |
|