-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
29 lines (25 loc) · 761 Bytes
/
Copy path.env.example
File metadata and controls
29 lines (25 loc) · 761 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
28
29
# =============================================================================
# Global Horizon Bank — Environment Template
# Copy to .env and fill in real values. Never commit .env to source control.
# =============================================================================
# SQL Server
SQLSERVER_HOST=localhost
SQLSERVER_PORT=21433
SQLSERVER_USER=sa
SQLSERVER_PASSWORD=ChangeMeStrongP@ssw0rd!
SQLSERVER_DB=GlobalHorizon_DWH
SQLSERVER_DB_OLTP=GlobalHorizon_OLTP
SQLSERVER_TIMEOUT=10
# Application
GHB_ENV=development
GHB_LOG_LEVEL=INFO
# Data Generation Tuning
GHB_NUM_CUSTOMERS=10000
GHB_NUM_BRANCHES=50
GHB_NUM_EMPLOYEES=200
GHB_NUM_ACCOUNTS=12000
GHB_NUM_LOANS=3000
GHB_NUM_TRANSACTIONS=100000
GHB_SEED=42
# Streamlit
STREAMLIT_ENV=development