-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
37 lines (33 loc) · 1.23 KB
/
.env.example
File metadata and controls
37 lines (33 loc) · 1.23 KB
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
# ============================================
# KAYAK DESTINATION RECOMMENDER
# Environment Variables Configuration
# ============================================
# --------------------------------------------
# WEATHER API KEYS
# --------------------------------------------
#OPENWEATHER_API_KEY=xxxx
WEATHERBIT_API_KEY=WEATHERBIT_API_KEY
# --------------------------------------------
# AWS S3 Configuration
# --------------------------------------------
# Get your credentials from: https://console.aws.amazon.com/iam/
S3_BUCKET_NAME=S3_BUCKET_NAME
AWS_ACCESS_KEY_ID=AWS_ACCESS_KEY_ID
AWS_SECRET_ACCESS_KEY=AWS_SECRET_ACCESS_KEY
S3_BUCKET_NAME=S3_BUCKET_NAME
# --------------------------------------------
# AWS RDS Configuration
# --------------------------------------------
DB_HOST=127.0.0.1
DB_PORT=6544
DB_NAME=postgres
DB_USER=postgres
RDS_PASSWORD=RDS_PASSWORD
# --------------------------------------------
# IMPORTANT NOTES
# --------------------------------------------
# 1. NEVER commit this file with real credentials to Git
# 2. Copy this file to .env and fill in your actual values
# 3. Add .env to your .gitignore file
# 4. Keep your API keys secure and rotate them regularly
# 5. Use different credentials for development and production