Condo Management
Find a file
2024-12-19 20:08:18 -05:00
.storybook autodocs is... auto 2024-12-19 20:08:18 -05:00
docs add dependency 2024-12-19 20:07:29 -05:00
e2e init 2024-12-06 16:14:24 -05:00
prisma Lucia Authentication (#8) 2024-12-19 20:06:44 -05:00
src organize storybook hierarchy 2024-12-19 20:08:18 -05:00
static init 2024-12-06 16:14:24 -05:00
.editorconfig done (#3) 2024-12-03 16:23:39 -05:00
.env add prisma 2024-12-10 10:40:41 -05:00
.gitignore add prisma 2024-12-10 10:40:41 -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 storybook setup with tailwind and theme changer 2024-12-19 20:07:42 -05:00
eslint.config.js init 2024-12-06 16:14:24 -05:00
package.json add flaticons 2024-12-19 20:08:18 -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 Update README.md 2024-12-10 13:41:13 -05:00
svelte.config.js init 2024-12-06 16:14:24 -05:00
tailwind.config.ts add dependency 2024-12-19 20:07:29 -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
bunx sv create

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

Developing

Once you've created a project and installed dependencies with bun install, start a development server:

bun run dev

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

Building

To create a production version of your app:

bun run build

You can preview the production build with bun run preview.

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