bluesky client without react native baggage written in sveltekit
1# sv 2 3Everything you need to build a Svelte project, powered by [`sv`](https://github.com/sveltejs/cli). 4 5## Creating a project 6 7If you're seeing this, you've probably already done this step. Congrats! 8 9```sh 10# create a new project 11npx sv create my-app 12``` 13 14To recreate this project with the same configuration: 15 16```sh 17# recreate this project 18pnpm dlx sv create --template minimal --types ts --add prettier eslint vitest="usages:unit,component" playwright tailwindcss="plugins:none" devtools-json storybook mcp="ide:claude-code+setup:remote" --install pnpm dashsky 19``` 20 21## Developing 22 23Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server: 24 25```sh 26npm run dev 27 28# or start the server and open the app in a new browser tab 29npm run dev -- --open 30``` 31 32## Building 33 34To create a production version of your app: 35 36```sh 37npm run build 38``` 39 40You 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.