diff --git a/README.md b/README.md index f83cdd3..fe5c244 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# Learn Auth +# Private Landing -Authentication experiment using Hono + Cloudflare Workers. +A boilerplate/starter project for quickly building RESTful APIs using [Cloudflare Workers](https://workers.cloudflare.com/), [Hono](https://honojs.dev/) and [Turso](https://turso.tech/). Inspired by Scott Tolinski, Mark Volkmann. ## Security Features diff --git a/bun.lockb b/bun.lockb index d562d3d..20c9df2 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/package.json b/package.json index 8196bdd..6bb6ffe 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,13 @@ { - "name": "learn-auth", + "name": "private-landing", "module": "src/index.ts", "type": "module", "scripts": { "check": "biome check", "deploy": "wrangler deploy --minify", "dev": "wrangler dev --port 8788", - "db:migrate": "turso db shell auth-db < src/db/migration.sql", - "db:reset": "turso db shell auth-db < src/db/reset.sql && turso db shell auth-db < src/db/schema.sql", + "db:migrate": "turso db shell private-landing-db < src/db/migration.sql", + "db:reset": "turso db shell private-landing-db < src/db/reset.sql && turso db shell private-landing-db < src/db/schema.sql", "format": "biome check --write", "lint": "biome lint", "test": "bun test", diff --git a/public/index.html b/public/index.html index f215ab4..74b9776 100644 --- a/public/index.html +++ b/public/index.html @@ -4,7 +4,7 @@ - Learn Auth + Private Landing