Daisy UI #14
1 changed files with 38 additions and 15 deletions
53
README.md
53
README.md
|
|
@ -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
|
## Setup
|
||||||
|
|
||||||
If you're seeing this, you've probably already done this step. Congrats!
|
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# create a new project in the current directory
|
# install dependencies
|
||||||
bunx sv create
|
bun install
|
||||||
|
|
||||||
# create a new project in my-app
|
|
||||||
bunx sv create my-app
|
|
||||||
```
|
```
|
||||||
|
|
||||||
## Developing
|
## 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
|
```bash
|
||||||
bun run dev
|
bun dev
|
||||||
|
|
||||||
# or start the server and open the app in a new browser tab
|
# 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
|
## Building
|
||||||
|
|
@ -30,9 +28,34 @@ bun run dev -- --open
|
||||||
To create a production version of your app:
|
To create a production version of your app:
|
||||||
|
|
||||||
```bash
|
```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`.
|
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.
|
> To deploy your app, you may need to install an [adapter](https://svelte.dev/docs/kit/adapters) for your target environment.
|
||||||
Loading…
Add table
Reference in a new issue