-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.env.example
More file actions
27 lines (22 loc) · 830 Bytes
/
.env.example
File metadata and controls
27 lines (22 loc) · 830 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
# Database
DATABASE_URL="postgresql://user:your_password_here@localhost:5432/myapp"
REDIS_URL="redis://:your_redis_password@localhost:6379"
# Authentication
AUTH_SECRET="your_auth_secret_value_here"
JWT_SECRET_KEY="your_jwt_secret_key_here"
SESSION_TOKEN="your_session_token_here"
# API Keys
STRIPE_API_KEY="your_stripe_api_key_here"
OPENAI_API_KEY="your_openai_api_key_here"
AWS_SECRET_KEY="your_aws_secret_key_here"
GITHUB_TOKEN="your_github_token_here"
# Third Party Services
SENDGRID_API_KEY="your_sendgrid_api_key_here"
TWILIO_AUTH_TOKEN="your_twilio_auth_token_here"
SLACK_BOT_TOKEN="your_slack_bot_token_here"
# Encryption
ENCRYPTION_KEY="your_encryption_key_here"
DJANGO_SECRETS_ENCRYPTION_KEY="your_django_secrets_key_here"
# Credentials
ADMIN_PASSWORD="your_admin_password_here"
DB_PASSWORD="your_db_password_here"