Daisy UI #14

Merged
BenjaminPalko merged 28 commits from daisy-ui into master 2024-12-19 21:20:21 -05:00
Showing only changes of commit b5af2098fb - Show all commits

View file

@ -1,28 +1,26 @@
# sv
# Hestia
Everything you need to build a Svelte project, powered by [`sv`](https://github.com/sveltejs/cli).
Hestia is an early stage project
## Creating a project
If you're seeing this, you've probably already done this step. Congrats!
## Setup
```bash
# create a new project in the current directory
bunx sv create
# create a new project in my-app
bunx sv create my-app
# install dependencies
bun install
```
## Developing
Once you've created a project and installed dependencies with `bun install`, start a development server:
Once you've created a project and installed dependencies, start a development server:
```bash
bun run dev
bun dev
# or start the server and open the app in a new browser tab
bun run dev -- --open
bun dev -- --open
# to use storybook for components development
bun storybook
```
## Building
@ -30,9 +28,34 @@ bun run dev -- --open
To create a production version of your app:
```bash
bun run build
bun build
```
## Stack
- https://svelte.dev/docs/kit/introduction
- https://zod.dev/
- https://day.js.org/
### Frontend
- https://tailwindcss.com/
- https://www.flaticon.com/
- https://daisyui.com/
### Backend
- https://www.prisma.io/
- https://pothos-graphql.dev/
- https://the-guild.dev/graphql/yoga-server
- https://github.com/pinojs/pino
### Tools
- https://storybook.js.org/
- https://vite.dev/
- https://vitest.dev/
You can preview the production build with `bun run preview`.
> To deploy your app, you may need to install an [adapter](https://svelte.dev/docs/kit/adapters) for your target environment.