Condo Management
Find a file
Baobeld 37d901a86c
Mutation implementations (#5)
* split up files

* timestamps, scalars and dayjs

* lib server directory

* move bun types to dev

* move storybook dark mode to dev

* got timestamps working

* fix reference

* separate schema into files and add mutations
2024-12-11 15:59:02 -05:00
.storybook storybook dark mode 2024-12-09 15:28:58 -05:00
e2e init 2024-12-06 16:14:24 -05:00
prisma Mutation implementations (#5) 2024-12-11 15:59:02 -05:00
src Mutation implementations (#5) 2024-12-11 15:59:02 -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 Mutation implementations (#5) 2024-12-11 15:59:02 -05:00
eslint.config.js init 2024-12-06 16:14:24 -05:00
package.json Mutation implementations (#5) 2024-12-11 15:59:02 -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 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
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.