24 lines
474 B
Plaintext
24 lines
474 B
Plaintext
# Application
|
|
APP_ENV=development
|
|
APP_DEBUG=true
|
|
APP_URL=http://localhost:8000
|
|
|
|
# reCAPTCHA v3
|
|
RECAPTCHA_SITE_KEY=your_site_key_here
|
|
RECAPTCHA_SECRET_KEY=your_secret_key_here
|
|
|
|
# Contact Email
|
|
CONTACT_EMAIL=contact@example.com
|
|
|
|
# PHPMailer (SMTP)
|
|
MAIL_HOST=smtp.example.com
|
|
MAIL_PORT=587
|
|
MAIL_USERNAME=contact@example.com
|
|
MAIL_PASSWORD=change_me
|
|
MAIL_ENCRYPTION=tls
|
|
MAIL_FROM=contact@example.com
|
|
MAIL_FROM_NAME=Portfolio
|
|
|
|
# Securite
|
|
APP_SECRET=your_random_secret_key_here
|