Skip to content

Commit

Permalink
rebrand application
Browse files Browse the repository at this point in the history
  • Loading branch information
vhscom committed Jan 10, 2025
1 parent 00005d9 commit a14af8d
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
Binary file modified bun.lockb
Binary file not shown.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 2 additions & 2 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Learn Auth</title>
<title>Private Landing</title>
<style>
:root {
/* Colors */
Expand Down Expand Up @@ -127,7 +127,7 @@
</head>

<body>
<h1>Learn Auth</h1>
<h1>Private Landing</h1>

<section>
<h3>Registration</h3>
Expand Down
2 changes: 1 addition & 1 deletion wrangler.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name = "learn-auth"
name = "private-landing"
main = "src/index.ts"
compatibility_date = "2025-01-04"

Expand Down

0 comments on commit a14af8d

Please sign in to comment.