Initial commit: Timepickr event scheduling app

- Next.js 14 with App Router and TypeScript
- Prisma ORM with PostgreSQL database
- Event creation with share links
- Calendar availability selection
- Password-protected analytics dashboard
- Stripe-inspired UI design
- Docker configuration for deployment
This commit is contained in:
2026-01-04 20:46:16 +00:00
commit 6f5e7b74b7
31 changed files with 9290 additions and 0 deletions

7
next.config.ts Normal file
View File

@@ -0,0 +1,7 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: 'standalone',
};
export default nextConfig;