A simple ToDo app meant to show some of the HTMX basics.
Install all dependencies
bun install
Create SQLite DB + Generate and apply migrations + insert seed data
bun run db:init
Everything should be set up now! All we have left to do is run:
bun run dev
Generate migration files
bun run db:generate --name=add_column_foo
Apply migrations
bun run db:migrate