frontend/README.md

33 lines
356 B
Markdown
Raw Permalink Normal View History

2025-03-28 17:38:21 -07:00
# wip sveltekit site for anylists
2025-03-23 19:44:00 -07:00
2025-03-28 17:38:21 -07:00
## Setup
2025-05-08 15:26:23 -07:00
2025-03-23 19:44:00 -07:00
```bash
2025-03-28 17:38:21 -07:00
bun install # install dependencies
2025-05-08 15:26:23 -07:00
bun run types # generate types from: https://winry.woach.me/Spoor/lexicons
2025-03-23 19:44:00 -07:00
```
## Developing
2025-03-28 17:38:21 -07:00
start the development server
2025-05-08 15:26:23 -07:00
2025-03-23 19:44:00 -07:00
```bash
2025-03-28 17:38:21 -07:00
bun run dev
2025-03-23 19:44:00 -07:00
```
## Building
2025-03-28 17:38:21 -07:00
build with ssg:
2025-03-23 19:44:00 -07:00
```bash
2025-03-28 17:38:21 -07:00
bun run build
2025-03-23 19:44:00 -07:00
```
2025-03-28 17:38:21 -07:00
preview the static site with:
2025-05-08 15:26:23 -07:00
2025-03-28 17:38:21 -07:00
```bash
bun run preview
```