docs(*): Update instructions for running the project

This commit is contained in:
Josh Creek
2025-04-16 22:27:50 +01:00
parent 7c03e61b12
commit 34c9361c40
+19 -3
View File
@@ -77,11 +77,27 @@ This project uses [SvelteKit](https://kit.svelte.dev/) and [TypeScript](https://
- [pnpm](https://pnpm.io/installation)
### Installation & Running Locally
#### Developing
Once you've installed dependencies with `pnpm install`, start a development server:
```bash
pnpm install
pnpm dev
pnpm run dev
# or start the server and open the app in a new browser tab
pnpm run dev -- --open
```
The app will be available at `http://localhost:5173` (or the port shown in your terminal).
#### Building
To create a production version:
```bash
pnpm run build
```
You can preview the production build with `npm run preview`.
---