-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
34 lines (29 loc) · 802 Bytes
/
env.example
File metadata and controls
34 lines (29 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Database Configuration
DB_DATABASE=news_aggregator
DB_USERNAME=news_user
DB_PASSWORD=your_secure_password_here
DB_ROOT_PASSWORD=your_secure_root_password_here
# API Configuration
API_BASE_URL=https://your-domain.com/api
# Mail Configuration
MAIL_MAILER=smtp
MAIL_HOST=smtp.mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=your_mail_username
MAIL_PASSWORD=your_mail_password
MAIL_ENCRYPTION=tls
MAIL_FROM_ADDRESS=noreply@your-domain.com
MAIL_FROM_NAME="News Aggregator"
# News API Keys
NEWSAPI_KEY=your_newsapi_key_here
GUARDIAN_API_KEY=your_guardian_key_here
BBC_API_KEY=your_bbc_key_here
# Application Settings
APP_NAME="News Aggregator"
APP_ENV=production
APP_DEBUG=false
APP_URL=https://your-domain.com
# Security
APP_KEY=your_laravel_app_key_here
SESSION_SECURE_COOKIE=true
SESSION_SAME_SITE=strict