Skip to content

Commit c215471

Browse files
committed
feat: add signup page and registration check
- Implemented a new signup page with form validation and user registration functionality. - Added actions to check if registration is allowed based on platform configuration. - Created necessary database tables for chat and user configurations. - Updated proxy logic to allow access to the signup page without authentication. - Introduced WhatsApp-related types and schemas for better type safety. - Added a test socket script for sending messages via WhatsApp.
1 parent a770ab8 commit c215471

File tree

27 files changed

+2631
-1630
lines changed

27 files changed

+2631
-1630
lines changed

.claude/settings.local.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,12 @@
1414
"Bash(bun add:*)",
1515
"Bash(npm cache clean:*)",
1616
"Bash(grep:*)",
17-
"Bash(bun run build:*)"
17+
"Bash(bun run build:*)",
18+
"Bash(xargs cat:*)",
19+
"Bash(find:*)",
20+
"Bash(corepack enable:*)",
21+
"Bash(npx pnpm install)",
22+
"Bash(psql:*)"
1823
]
1924
}
2025
}

drizzle.config.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,8 @@ import "@dotenvx/dotenvx/config";
44
export default defineConfig({
55
schema: "./src/db/schema",
66
out: "./drizzle",
7-
dialect: "sqlite",
7+
dialect: "postgresql",
88
dbCredentials: {
99
url: process.env.DATABASE_URL!,
10-
...(process.env.DATABASE_AUTH_TOKEN && {
11-
authToken: process.env.DATABASE_AUTH_TOKEN,
12-
}),
1310
},
1411
});

drizzle/0000_low_callisto.sql

Lines changed: 0 additions & 258 deletions
This file was deleted.

0 commit comments

Comments
 (0)