README
This commit is contained in:
parent
8164f292ac
commit
b5af2098fb
1 changed files with 38 additions and 15 deletions
51
README.md
51
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
|
||||
|
||||
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.
|
||||
Loading…
Add table
Reference in a new issue