Condo Management
Find a file
Benjamin Palko b10cb37549 add yoga
2024-12-10 09:49:59 -05:00
.storybook storybook dark mode 2024-12-09 15:28:58 -05:00
e2e init 2024-12-06 16:14:24 -05:00
src add yoga 2024-12-10 09:49:59 -05:00
static init 2024-12-06 16:14:24 -05:00
.editorconfig done (#3) 2024-12-03 16:23:39 -05:00
.gitignore init 2024-12-06 16:14:24 -05:00
.npmrc init 2024-12-06 16:14:24 -05:00
.prettierignore init 2024-12-06 16:14:24 -05:00
.prettierrc init 2024-12-06 16:14:24 -05:00
.tool-versions init 2024-12-02 09:43:56 -05:00
bun.lockb add yoga 2024-12-10 09:49:59 -05:00
eslint.config.js init 2024-12-06 16:14:24 -05:00
package.json add yoga 2024-12-10 09:49:59 -05:00
playwright.config.ts init 2024-12-06 16:14:24 -05:00
postcss.config.js init 2024-12-06 16:14:24 -05:00
README.md init 2024-12-06 16:14:24 -05:00
svelte.config.js init 2024-12-06 16:14:24 -05:00
tailwind.config.ts font 2024-12-10 09:49:52 -05:00
tsconfig.json init 2024-12-06 16:14:24 -05:00
vite.config.ts init 2024-12-06 16:14:24 -05:00

sv

Everything you need to build a Svelte project, powered by sv.

Creating a project

If you're seeing this, you've probably already done this step. Congrats!

# create a new project in the current directory
npx sv create

# create a new project in my-app
npx sv create my-app

Developing

Once you've created a project and installed dependencies with npm install (or pnpm install or yarn), start a development server:

npm run dev

# or start the server and open the app in a new browser tab
npm run dev -- --open

Building

To create a production version of your app:

npm run build

You can preview the production build with npm run preview.

To deploy your app, you may need to install an adapter for your target environment.