-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
60 lines (48 loc) · 2.24 KB
/
Copy path.env.example
File metadata and controls
60 lines (48 loc) · 2.24 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# =============================================================================
# Bike Store Pipeline — Environment Configuration
# =============================================================================
# Copy this file to .env and fill in your actual values.
# NEVER commit the real .env file to version control!
# -----------------------------------------------------------------------------
# PostgreSQL Connection
# -----------------------------------------------------------------------------
# Host name or IP address of the PostgreSQL server
POSTGRES_HOST=localhost
# PostgreSQL port (default: 5432)
POSTGRES_PORT=5432
# Database name to use for the bike store data
POSTGRES_DATABASE=bike_store
# Database username with read/write access
POSTGRES_USERNAME=postgres
# Database password
POSTGRES_PASSWORD=postgres
# -----------------------------------------------------------------------------
# MongoDB Connection
# -----------------------------------------------------------------------------
# MongoDB connection URI (include username/password if authentication enabled)
# Local dev: mongodb://localhost:27017
# Inside docker-compose `app` container: mongodb://mongodb:27017
MONGO_URI=mongodb://localhost:27017
# MongoDB database name containing the source collections
MONGO_DB=bike_store
# -----------------------------------------------------------------------------
# Optional: ETL Configuration
# -----------------------------------------------------------------------------
# Name of the timestamp column in MongoDB documents used for incremental loads
ETL_TS_COL=updated_at
# Target Postgres schema for loaded tables
ETL_SCHEMA=public
# -----------------------------------------------------------------------------
# Metrics (Pushgateway)
# -----------------------------------------------------------------------------
PUSHGATEWAY_URL=pushgateway:9091
PUSHGATEWAY_TIMEOUT=5
WAIT_FOR_PUSHGATEWAY=true
PUSHGATEWAY_WAIT_TIMEOUT=30
# -----------------------------------------------------------------------------
# Grafana (Monitoring Stack)
# -----------------------------------------------------------------------------
# Grafana admin user (default: admin)
GRAFANA_ADMIN_USER=your_admin_username
# Grafana admin password
GRAFANA_ADMIN_PASSWORD=your_admin_password