this is a sveltekit version of a simple day planner (todo list) i originally made here
how to use it:
-
set up your local database:
- check out this guide for mysql local setup
- for production, you can use any mysql-supported service like railway
-
get redis up and running:
- upstash and railway (again) are solid options
- personally, i'm self-hosting my app, db, and redis through coolify.io
-
install dependencies:
bun install
-
run db migrations:
bun run db:generate && bun run db:migrate
-
start the dev server:
bun run dev
that's it