···11-# sv
22-33-Everything you need to build a Svelte project, powered by [`sv`](https://github.com/sveltejs/cli).
44-55-## Creating a project
66-77-If you're seeing this, you've probably already done this step. Congrats!
88-99-```sh
1010-# create a new project
1111-npx sv create my-app
1212-```
1313-1414-To recreate this project with the same configuration:
1515-1616-```sh
1717-# recreate this project
1818-bun x sv create --template minimal --types ts --add prettier eslint vitest="usages:unit,component" tailwindcss="plugins:typography,forms" sveltekit-adapter="adapter:cloudflare+cfTarget:workers" devtools-json drizzle="database:sqlite+sqlite:libsql" --install bun morgenblau
1919-```
2020-2121-## Developing
2222-2323-Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
11+# Morgenblau
2422525-```sh
2626-npm run dev
33+Your calm window into the Atmosphere.
2742828-# or start the server and open the app in a new browser tab
2929-npm run dev -- --open
3030-```
3131-3232-## Building
3333-3434-To create a production version of your app:
3535-3636-```sh
3737-npm run build
3838-```
3939-4040-You can preview the production build with `npm run preview`.
4141-4242-> To deploy your app, you may need to install an [adapter](https://svelte.dev/docs/kit/adapters) for your target environment.