0cd61f2a12
Deploy to VPS / deploy (push) Has been cancelled
- Envoi reel via le SDK Resend dans app/actions/contact.ts (avec gestion d'erreur) - Cles/adresses lues depuis l'env (RESEND_API_KEY, CONTACT_TO_EMAIL, CONTACT_FROM_EMAIL) - Ajout de resend en dependance + lock synchronise - .env.example documente la config (autorise dans .gitignore) - README + TODO a jour Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
15 lines
626 B
Bash
15 lines
626 B
Bash
# Copy this file to `.env.local` for local dev (or set these in your host's env in prod).
|
|
# Never commit real values — `.env*` is gitignored.
|
|
|
|
# Public site URL (used for canonical URLs, OG metadata, etc.)
|
|
NEXT_PUBLIC_SITE_URL=https://highlandgamesstudio.com
|
|
|
|
# --- Contact form (Resend) ---
|
|
# API key from https://resend.com/api-keys
|
|
RESEND_API_KEY=
|
|
# Address that RECEIVES contact messages
|
|
CONTACT_TO_EMAIL=hello@highlandgamesstudio.com
|
|
# Sender address — must be on a domain verified in Resend.
|
|
# Use onboarding@resend.dev for testing (only delivers to your own account email).
|
|
CONTACT_FROM_EMAIL=onboarding@resend.dev
|