32 lines
1.1 KiB
Markdown
32 lines
1.1 KiB
Markdown
# Suggested Commands (Windows project shell)
|
|
|
|
## Core project commands (pnpm)
|
|
|
|
- `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.
|
|
|
|
## Testing/linting/formatting status
|
|
|
|
- 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.
|
|
|
|
## Useful Windows shell commands
|
|
|
|
- `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.
|
|
|
|
## Environment notes
|
|
|
|
- Node.js 18+ required.
|
|
- Backend API should be running at `http://localhost:8000` for dev proxying. |