Skip to content

Latest commit

 

History

History
50 lines (33 loc) · 1.72 KB

README.md

File metadata and controls

50 lines (33 loc) · 1.72 KB

I have created this app to learn how to build simple CRUD full-stack app.

Screenshot of the todo app

I have used:

  • Svelte and SvelteKit for frontend and backend
  • Prisma to model data
  • Supabase for storing users and their todo lists in the Postgres database
  • Vercel for hosting

Developing

I used Bun for this project just to play around, so to install dependencies use:

bun install

Start a development server:

bun --bun run dev

Run prisma studio:

bunx prisma generate
bunx prisma studio

Building

To create a production version of your app:

bun run build

You can preview the production build with bun run preview.

Additional resources