dotenv.nl

Environment Variables

.env
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
35
# Application Configuration
APP_NAME=dotenv.nl
APP_LOCALE=en
APP_ENV=production
APP_URL=https://dotenv.nl
# Database Configuration
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=dotenv_db
DB_USERNAME=admin
DB_PASSWORD=***********
# Cache Configuration
CACHE_DRIVER=redis
REDIS_HOST=127.0.0.1
REDIS_PORT=6379
# Mail Configuration
MAIL_MAILER=smtp
MAIL_HOST=smtp.mailtrap.io
MAIL_PORT=587
MAIL_USERNAME=your-username
MAIL_PASSWORD=your-password
MAIL_FROM_ADDRESS=hello@dotenv.nl
MAIL_FROM_NAME=dotenv.nl
# API Keys
STRIPE_KEY=pk_test_***********
STRIPE_SECRET=sk_test_***********
GOOGLE_ANALYTICS_ID=GA_MEASUREMENT_ID
# Security
JWT_SECRET=your-256-bit-secret

Secure Storage

Keep your environment variables safe and organized with industry-standard security practices.

Easy Management

Simple interface to manage environment variables across different environments and projects.

Team Collaboration

Share configurations safely with your team while keeping sensitive data protected.