Logo HomeCards
o7 Logo

Welcome to the o7 stack!

Next Steps:

Edit this page

Edit src/routes/+page.svelte to see your changes live.

The source for these cards is in src/lib/components/NextStep.svelte.

There's some global styling in src/app.css.

Learn more

Work on your database schema

Write a Prisma schema in prisma/schema.prisma.

Insert your database connection details into .env.

Run pnpm db:push to update your database typings.

Remember that you're using Kysely instead of Prisma to make your queries, and import { db } from '$lib/db'!

Learn more

Create some tRPC routes

There's an example query in src/lib/server/routes/_app.ts.

Also take a look at src/routes/+page.server.ts to see how server-side rendering works!

Learn more