- Next.js 16.1.6 with App Router, TypeScript strict, Tailwind CSS v4 - ESLint 9, Prettier with Tailwind class sorting plugin - Husky + lint-staged pre-commit hooks - Multi-stage Dockerfile (dev/build/production) with pnpm + Node 20 - docker-compose.yml with hot reload + PostgreSQL 17 - src/ directory structure (components, lib, hooks, types, payload) - .env.example template with all required variables - standalone output mode for production Docker builds Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
21 lines
518 B
Text
21 lines
518 B
Text
# Database (Neon PostgreSQL)
|
|
DATABASE_URI=postgresql://user:password@localhost:5432/axil
|
|
|
|
# Payload CMS
|
|
PAYLOAD_SECRET=your-payload-secret-min-32-chars-here
|
|
|
|
# Email (Resend)
|
|
RESEND_API_KEY=re_xxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
|
|
# Site
|
|
NEXT_PUBLIC_SITE_URL=http://localhost:3000
|
|
|
|
# Media Storage (Uploadthing)
|
|
UPLOADTHING_SECRET=sk_xxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
UPLOADTHING_APP_ID=your-app-id
|
|
|
|
# AI Chat Bot (optional)
|
|
OPENAI_API_KEY=sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
|
|
# Error Monitoring
|
|
SENTRY_DSN=https://xxxx@sentry.io/xxxx
|