-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env
63 lines (53 loc) · 1.95 KB
/
.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Dummy .env
# Don't worry, this is dummy env for path-traversal testing :-)
# Database Configuration
DATABASE_URL=mysql://user:password@localhost:3306/mydatabase
DATABASE_USER=user
DATABASE_PASSWORD=password
DATABASE_HOST=localhost
DATABASE_NAME=mydatabase
DATABASE_PORT=3306
# Application Secrets
SECRET_KEY=supersecretkey123
JWT_SECRET=verysecurejwtsecret
ENCRYPTION_KEY=secureencryptionkey456
# AWS Configuration
AWS_ACCESS_KEY_ID=AKIAIOSFODNN7EXAMPLE
AWS_SECRET_ACCESS_KEY=wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
AWS_REGION=us-east-1
AWS_S3_BUCKET=my-s3-bucket
AWS_CLOUDFRONT_URL=https://d123.cloudfront.net
# Email Service Configuration
EMAIL_SERVICE_API_KEY=SG.xxxxx.yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy
EMAIL_FROM_ADDRESS=no-reply@example.com
EMAIL_SMTP_HOST=smtp.example.com
EMAIL_SMTP_PORT=587
EMAIL_SMTP_USER=smtp_user
EMAIL_SMTP_PASSWORD=smtp_password
# OAuth Configuration
OAUTH_CLIENT_ID=abc123clientid
OAUTH_CLIENT_SECRET=def456clientsecret
OAUTH_REDIRECT_URI=https://example.com/auth/callback
# Payment Gateway Configuration
PAYMENT_GATEWAY_API_KEY=sk_test_4eC39HqLyjWDarjtT1zdp7dc
PAYMENT_GATEWAY_SECRET_KEY=whsec_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
PAYMENT_GATEWAY_PUBLISHABLE_KEY=pk_test_TYooMQauvdEDq54NiTphI7jx
# Social Media API Keys
FACEBOOK_APP_ID=your_facebook_app_id
FACEBOOK_APP_SECRET=your_facebook_app_secret
TWITTER_API_KEY=your_twitter_api_key
TWITTER_API_SECRET=your_twitter_api_secret
LINKEDIN_CLIENT_ID=your_linkedin_client_id
LINKEDIN_CLIENT_SECRET=your_linkedin_client_secret
# Third-Party Services
STRIPE_API_KEY=sk_live_xxxxxxxxxxxxxxxxxxxxxxxxx
SENDGRID_API_KEY=SG.xxxxx.yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy
GOOGLE_MAPS_API_KEY=AIzaSyD-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
RECAPTCHA_SITE_KEY=6LeIxAcTAAAAAJcZVRqyHh71UMIEGNQ_MXjiZKhI
RECAPTCHA_SECRET_KEY=6LeIxAcTAAAAAGG-vFI1TnRWxMZNFuojJ4WifJWe
# Logging and Monitoring
SENTRY_DSN=https://examplePublicKey@o0.ingest.sentry.io/0
LOG_LEVEL=debug
# Environment
NODE_ENV=production
PORT=8080