Skip to content

spinspire/surrealdb-sveltekit-starter

Repository files navigation

A starter-kit project from which to create your SvelteKit + SurrealDB projects

SurrealDB + SvelteKit Demo

  • Run SurrealDB in Docker docker compose up -d

  • Run SurrealDB client ... docker compose exec db /surreal sql -c http://localhost:8000 --db test --ns test -u root -p root and then copy-paste the contents of db-init/schema.sql (there should be a better way)

  • Run SvelteKit app: pnpm install; npm run dev

  • Visit http://localhost:5173 and "Sign Up" as a new user (also signs you in)

    Sign In / Sign Up

  • CRUD some todo's.

    CRUD todo's

  • Sign Out and Sign Up / Sign In as a different user. You should see a completely different list of todo's.

  • The above separation of todo records is achived by the following line in schema.sql -- DEFINE FIELD user ON todo TYPE record(user) VALUE $session.sd ASSERT $value != null; See surrealdb/surrealdb#1298 (comment)

Developing & Building

The usual SvelteKit stuff applies.

About

A starter-kit project from which to create your SvelteKit + SurrealDB projects

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published