biohazard-vfx/.env.example
Nicholai 11410f9727 Initial project setup with Next.js, Tailwind CSS, TypeScript, and ESLint configuration
- Configured Next.js app with app router
- Set up Tailwind CSS with custom dark theme
- Implemented providers with SessionProvider and ThemeProvider
- Added toast system
- Configured ESLint and Prettier
- Set up pre-commit hooks with husky and lint-staged

🚀 Generated with [opencode](https://opencode.ai)

Co-Authored-By: opencode <noreply@opencode.ai>
2025-08-07 15:33:04 -06:00

29 lines
936 B
Plaintext

# Example environment variables for local development and for copying to .env.local or .env.production
# Database (SQLite local or a production Postgres URL)
# For SQLite (local dev):
DATABASE_URL="file:./dev.db"
# For Postgres (production):
# DATABASE_URL="postgresql://USER:PASSWORD@HOST:PORT/DATABASE?schema=public"
# NextAuth configuration
NEXTAUTH_URL="http://localhost:3000"
# Use a strong random string in production (e.g. `openssl rand -base64 32`)
NEXTAUTH_SECRET="your-nextauth-secret-here"
# Web3Forms (contact form)
WEB3FORMS_ACCESS_KEY="your-web3forms-access-key-here"
# Optional SMTP (for password reset / emails)
# SMTP_HOST=smtp.example.com
# SMTP_PORT=587
# SMTP_USER=your-smtp-user
# SMTP_PASS=your-smtp-password
# Optional upload provider (Cloudinary / Uploadthing)
# CLOUDINARY_URL=cloudinary://API_KEY:API_SECRET@CLOUD_NAME
# UPLOADTHING_SECRET=your-uploadthing-secret
# Node environment
NODE_ENV=development