2026-03-11 16:44:55 +07:00
|
|
|
# Suggested Commands (Windows project shell)
|
2026-03-09 06:59:36 +07:00
|
|
|
|
2026-03-11 16:44:55 +07:00
|
|
|
## Core project commands (pnpm)
|
2026-03-09 06:59:36 +07:00
|
|
|
|
2026-03-11 16:44:55 +07:00
|
|
|
- `pnpm install` - install dependencies.
|
|
|
|
|
- `pnpm run dev` - run local dev server.
|
|
|
|
|
- `pnpm run build` - create production build (`build/`).
|
|
|
|
|
- `pnpm run preview` - preview production build.
|
|
|
|
|
- `pnpm run prepare` - run SvelteKit sync.
|
2026-03-09 06:59:36 +07:00
|
|
|
|
2026-03-11 16:44:55 +07:00
|
|
|
## Testing/linting/formatting status
|
2026-03-09 06:59:36 +07:00
|
|
|
|
2026-03-11 16:44:55 +07:00
|
|
|
- No lint command configured yet.
|
|
|
|
|
- No format command configured yet.
|
|
|
|
|
- No test command configured yet.
|
|
|
|
|
- Notes in `AGENTS.md` mention future options like Vitest/Playwright, but not currently wired in scripts.
|
2026-03-09 06:59:36 +07:00
|
|
|
|
2026-03-11 16:44:55 +07:00
|
|
|
## Useful Windows shell commands
|
2026-03-09 06:59:36 +07:00
|
|
|
|
2026-03-11 16:44:55 +07:00
|
|
|
- `dir` - list files (cmd).
|
|
|
|
|
- `Get-ChildItem` or `ls` - list files (PowerShell).
|
|
|
|
|
- `cd <path>` - change directory.
|
|
|
|
|
- `git status` - working tree status.
|
|
|
|
|
- `git diff` - inspect changes.
|
|
|
|
|
- `git log --oneline -n 10` - recent commits.
|
|
|
|
|
- `findstr /S /N /I "text" *` - basic content search in cmd.
|
|
|
|
|
- `Select-String -Path .\* -Pattern "text" -Recurse` - content search in PowerShell.
|
2026-03-09 06:59:36 +07:00
|
|
|
|
2026-03-11 16:44:55 +07:00
|
|
|
## Environment notes
|
2026-03-09 06:59:36 +07:00
|
|
|
|
2026-03-11 16:44:55 +07:00
|
|
|
- Node.js 18+ required.
|
|
|
|
|
- Backend API should be running at `http://localhost:8000` for dev proxying.
|