Your calm window into the Atmosphere. morgen.blue
rss atproto
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs: update README with project name and description

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

+2 -40
+2 -40
README.md
··· 1 - # sv 2 - 3 - Everything you need to build a Svelte project, powered by [`sv`](https://github.com/sveltejs/cli). 4 - 5 - ## Creating a project 6 - 7 - If you're seeing this, you've probably already done this step. Congrats! 8 - 9 - ```sh 10 - # create a new project 11 - npx sv create my-app 12 - ``` 13 - 14 - To recreate this project with the same configuration: 15 - 16 - ```sh 17 - # recreate this project 18 - 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 19 - ``` 20 - 21 - ## Developing 22 - 23 - Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server: 1 + # Morgenblau 24 2 25 - ```sh 26 - npm run dev 3 + Your calm window into the Atmosphere. 27 4 28 - # or start the server and open the app in a new browser tab 29 - npm run dev -- --open 30 - ``` 31 - 32 - ## Building 33 - 34 - To create a production version of your app: 35 - 36 - ```sh 37 - npm run build 38 - ``` 39 - 40 - You can preview the production build with `npm run preview`. 41 - 42 - > To deploy your app, you may need to install an [adapter](https://svelte.dev/docs/kit/adapters) for your target environment.